[jbosstools-issues] [JBoss JIRA] (JBIDE-13004) Return back to WTP's original DirtyRegionProcessor clode after it is fixed in WTP 3.5

Victor Rubezhny (JIRA) jira-events at lists.jboss.org
Tue Nov 6 09:33:18 EST 2012


Victor Rubezhny created JBIDE-13004:
---------------------------------------

             Summary: Return back to WTP's original DirtyRegionProcessor clode after it is fixed in WTP 3.5
                 Key: JBIDE-13004
                 URL: https://issues.jboss.org/browse/JBIDE-13004
             Project: Tools (JBoss Tools)
          Issue Type: Bug
          Components: common/jst/core
    Affects Versions: 4.0.0.Alpha1
         Environment: Juno
            Reporter: Victor Rubezhny
            Assignee: Alexey Kazakov
             Fix For: 4.0.0.Alpha2


1. Create the following class:

{code}
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 "";
	}
}
{code}

2. Both ELs are marked as a problem
3. Copy String s2 = "#{string.ss}";
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 = "#{string.ss} ";
8. The EL has a problem annotation now.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jbosstools-issues mailing list