| Summary: | Editor image not updated until editor given focus | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Darin Swanson <Darin_Swanson> |
| Component: | Text | Assignee: | 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: | |||
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() { } }