-
-
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 yields false positive for counter-variant arguments #770
Labels
a:false-positive
PMD flags a piece of code that is not problematic
Milestone
Comments
The same problem seems to occur with generic type: @Test
public void testOnlyIdentifierIsUsed() {
DataSourceEntity<Long> ds = mockEntity(3777347L); // <<=== the complaint
Object expected = DataSourceEntityAwareKeyGenerator.DEFAULT.generate(null, null, ds.getDsId());
Object actual = DataSourceEntityAwareKeyGenerator.DEFAULT.generate(null, null, ds);
assertSame(expected, actual); // based on the way SimpleKeyGenerator works when there is only one argument...
}
private static <ID extends Serializable & Comparable<ID>> DataSourceEntity<ID> mockEntity(ID id) {
...
} |
@lgoldstein good catch! thanks for the feedback. This was impossible with previous PMD versions, but we may be able to detect these cases properly given the improved type resolution in upcoming releases. |
4 tasks
4 tasks
This has been fixed with PMD 7.0.0-rc1. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please, prefix the report title with the language it applies to within brackets, such as [java] or [apex]. If not specific to a language, you can use [core]
Rule Set:
rulesets/java/unusedcode.xml/UnusedPrivateMethod
Description:
(PMD 5.6.1) If the invoked private method contains a "weaker" formal parameter type than actual invocation then PMD does not detect its invocation
Code Sample demonstrating the issue:
yields
CharacterUtilsTest:44 Rule:UnusedPrivateMethod Priority:3 Avoid unused private methods such as 'testNoChangeOnFlip(CharSequence)'..
A similar problem occurs with this (more complex) code:
which yields
ExceptionThrower:405 Rule:UnusedPrivateMethod Priority:3 Avoid unused private methods such as 'spit(Throwable)'..
- although in this case, the types are the sameRunning PMD through: Maven
The text was updated successfully, but these errors were encountered: