[java] FieldNamingConventions: false positive with lombok's @UtilityClass #4455
Labels
a:false-positive
PMD flags a piece of code that is not problematic
Milestone
Affects PMD Version:7.0.0-rc1
Rule: FieldNamingConventions
Please provide the rule name and a link to the rule documentation:
https://docs.pmd-code.org/latest/pmd_rules_java_codestyle.html#fieldnamingconventions
Description:
The
Test1
uses@UtilityClass
, making the fieldstatic
. So the two classesTest1
andTest2
are equivalent. However, PMD reports a warning inTest1
and no warnings inTest2
because PMD does not consider the annotation@UtilityClass
. PMD should not report a warning inTest1
like theTest2
.Code Sample demonstrating the issue:
Expected outcome:
PMD reports a violation at line 4, but that's wrong. That's a false positive.
Running PMD through: CLI
The text was updated successfully, but these errors were encountered: