Skip to content
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

Closed
lgoldstein opened this issue Nov 30, 2017 · 3 comments · Fixed by #3113
Closed

[java] UnusedPrivateMethod yields false positive for counter-variant arguments #770

lgoldstein opened this issue Nov 30, 2017 · 3 comments · Fixed by #3113
Labels
a:false-positive PMD flags a piece of code that is not problematic
Milestone

Comments

@lgoldstein
Copy link

lgoldstein commented Nov 30, 2017

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:

    @Test
    public void testFlipCaseDigit() {
        testNoChangeOnFlip("0123456789");
    }

    @Test
    public void testFlipCaseWhitespace() {
        testNoChangeOnFlip(" \r\t\n");
    }

    @Test
    public void testFlipCaseOtherChars() {
        testNoChangeOnFlip("!@#$%^");
    }

    private static void testNoChangeOnFlip(CharSequence chars) {
        for (int index = 0; index < chars.length(); index++) {
            char expected = chars.charAt(index);
            char actual = CharacterUtils.flipCase(expected);
            assertEquals("Unexpected flipped value", expected, actual);
        }
    }

yields CharacterUtilsTest:44 Rule:UnusedPrivateMethod Priority:3 Avoid unused private methods such as 'testNoChangeOnFlip(CharSequence)'..

A similar problem occurs with this (more complex) code:

public class ExceptionUtils {
    private static final class ExceptionThrower {
        private static synchronized void spit(Throwable t) {
             ...
        }
   }

    @SuppressWarnings("synthetic-access")
    public static void rethrowException(Throwable t) {
        ExceptionThrower.spit(t);
    }
}

which yields ExceptionThrower:405 Rule:UnusedPrivateMethod Priority:3 Avoid unused private methods such as 'spit(Throwable)'.. - although in this case, the types are the same

Running PMD through: Maven

@lgoldstein
Copy link
Author

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) {
      ...
    }

@jsotuyod jsotuyod changed the title UnusedPrivateMethod yields false positive for counter-variant arguments [java] UnusedPrivateMethod yields false positive for counter-variant arguments Nov 30, 2017
@jsotuyod jsotuyod added the a:false-positive PMD flags a piece of code that is not problematic label Nov 30, 2017
@jsotuyod
Copy link
Member

@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.

oowekyala added a commit to oowekyala/pmd that referenced this issue Nov 10, 2020
@adangel adangel added this to the 7.0.0 milestone Feb 19, 2021
@oowekyala oowekyala linked a pull request Feb 19, 2021 that will close this issue
4 tasks
@adangel adangel mentioned this issue Jan 23, 2023
55 tasks
@adangel
Copy link
Member

adangel commented Apr 22, 2023

This has been fixed with PMD 7.0.0-rc1.

@adangel adangel closed this as completed Apr 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:false-positive PMD flags a piece of code that is not problematic
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants