If an unused method calls another unused method, the 2nd one is no longer
considered usused.
I think it should


Ex :

If you create an class with those 3 methods, they will all be tagged as
unused :
    private static void unused0 (   )    {  }
    private static void unused1 (   )   {  }
    private static void unused2 (   )   {  }


If you change them to
    private static void unused0 (   )    {  unused1();  }
    private static void unused1 (   )   {  unused2();    }
    private static void unused2 (   )   {    }
,

only the 1st one is tagged as unused.

Alain Ravet


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

Reply via email to