[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:37:19 EST 2012


     [ https://issues.jboss.org/browse/JBIDE-13004?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Victor Rubezhny updated JBIDE-13004:
------------------------------------

    Description: 
Because of [DirtyRegionProcessor's issue|https://bugs.eclipse.org/bugs/show_bug.cgi?id=384776] we have a fixed copy of this class due to fix [JBIDE-12418|.

The referenced BugZilla issue is marked as fixed and is targeted for WTP 3.5.M3, so, probably we should return to original class and not to have its copy in our code.


  was:
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.



    
> 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.1.x
>
>
> Because of [DirtyRegionProcessor's issue|https://bugs.eclipse.org/bugs/show_bug.cgi?id=384776] we have a fixed copy of this class due to fix [JBIDE-12418|.
> The referenced BugZilla issue is marked as fixed and is targeted for WTP 3.5.M3, so, probably we should return to original class and not to have its copy in our code.

--
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