-
Bug
-
Resolution: Done
-
Major
-
4.0.0.Alpha1
-
None
1. Create the following class:
package test; import javax.enterprise.inject.Produces; import javax.inject.Named; public class Bean_Broken { public void foo() { String s = "#{string.ss}"; String s2 = "#{string.ss}"; } @Named @Produces public String string() { return ""; } }
2. Both ELs are marked as a problem
3. Copy String s2 = "#
4. Delete it.
5. Past String s2 = "#{string.ss}
";
6. There is no validation problem on the second EL.
7. Add " " to the second string: String s2 = "#
";
8. The EL has a problem annotation now.
- clones
-
JBIDE-12592 El is not revalidated in java comments
- Closed
-
JBIDE-13004 Return back to WTP's original DirtyRegionProcessor clode after it is fixed in WTP 3.5
- Closed