-
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}"; } @Named @Produces public String string() { return ""; } }
2. The EL is marked as a problem
3. Ctrl + / on
String s = "#{string.ss}";
Don't save the file.
4. FAILURE: There is still a validation problem on the EL.
5. Save the file. The problem in the comment is gone.
- is cloned by
-
JBIDE-12418 Sometimes As-You-Type validation isn't invoked after a Java-String that contains EL is Copy-Pasted in Java editor
- Closed