Hello,

in a project we have some interfaces with a lot of methods. If I want to 
remove some methods, Find usages does not help me very much, because it 
does not take the context into account.

Example:

interface I {
   void method();
}

class C implements I {
   void method() {
   }
}


Code somewhere else
(a)

    I i = ...
    i.method();


(b)

    C c = ...
    c.method();

Performing a find usages on "method()" of I shows me (a) and (b) as 
results. But I need an extra option to only see (a), because (b) works, 
too, if "method()" is removed from I.

Best regards
Thomas Singer


_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to