Community
Participate
Working Groups
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() { } }
*** This bug has been marked as a duplicate of 71843 ***