Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 75117

Summary: Editor image not updated until editor given focus
Product: [Eclipse Project] JDT Reporter: Darin Swanson <Darin_Swanson>
Component: TextAssignee: JDT-UI-Inbox <jdt-ui-inbox>
Status: RESOLVED DUPLICATE QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Darin Swanson CLA 2004-09-27 15:02:33 EDT
I200409231200

Have two Java editors open with classes that reference each other.
In editor A, delete a method that the class defined in editor B references. 
Save editor A
No change in the editor image of editor B
Give focus to Editor B (editor tab image updates to error image)

Concrete example. Delete doIt in B.
==================
package a;

public class A {
	public static void main(String[] args) {
		new B().doIt();
	}
}
==================
package a;

public class B {
	public void doIt() {
	}
}
Comment 1 Markus Keller CLA 2004-09-28 03:43:30 EDT

*** This bug has been marked as a duplicate of 71843 ***