-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
[java] UnusedPrivateMethod false positive from inner class via external class #1189
Comments
@arifogel thanks for the report. The rule is effectively not using type resolution yet, so these non-straightforward scenarios will be missed for the time being. |
I'd be willing to look into this with a little shepherding. Is there some documentation/code I could review to help me get started? Or is this blocked on something that is currently churning internally? |
@jsotuyod any progress on this? I'm still willing to look into this with a bit of initial guidance. |
Hi @arifogel, First step would be (if not done already): https://github.com/pmd/pmd/wiki/Setup-IDE Then the hard part comes: Fixing the issue. We currently don't resolve the return type of a method call - which would be needed here in order to know, that we call the method I guess, changing the sample code to this one:
won't trigger this false positive, since we know the type of the variable Let me know, if you run into any problems - either here or on https://gitter.im/pmd/pmd |
I finally got my IDE set up. Your version of the sample code passes.
Now comes the hard part of processing the return type.. |
It seems like the failure occurs even earlier than I expected.
AFAICT, even |
It seems like we also encountered this issue. |
This has been fixed with PMD 7.0.0-rc1. |
Affects PMD Version: 6.4.0
Rule: UnusedPrivateMethod
Description:
A private method of an outer class called in an inner class via a method from an external class returning an object of the outer class type is falsely reported as being unused.
Code Sample demonstrating the issue:
mvn install
in root of downloaded repositoryRunning PMD through: [Maven]
The text was updated successfully, but these errors were encountered: