Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 75117 - Editor image not updated until editor given focus
Summary: Editor image not updated until editor given focus
Status: RESOLVED DUPLICATE of bug 71843
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-09-27 15:02 EDT by Darin Swanson CLA
Modified: 2004-09-28 03:43 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***