We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package a; public class AnonymousClassBug { Runnable a = new Runnable() { @Override public void run() { methodInsideAnonymousClass(); } private void methodInsideAnonymousClass() { } }; }
The above class results in the following class graph:
Uncommenting the call to methodInsideAnonymousClass results in:
methodInsideAnonymousClass
Removing the corresponding project from the set of Usus projects will not remove the anonymous class:
Looks like anonymous classes are detected accidentally when they call methods on themselves.
The text was updated successfully, but these errors were encountered:
#32 might be related to this issue.
Sorry, something went wrong.
47dac6c
No branches or pull requests
The above class results in the following class graph:
Uncommenting the call to
methodInsideAnonymousClass
results in:Removing the corresponding project from the set of Usus projects will not remove the anonymous class:
Looks like anonymous classes are detected accidentally when they call methods on themselves.
The text was updated successfully, but these errors were encountered: