Hey guys,
I am using SonarQube 9.9.3. I get a false positive with Java:
@Value
private static class SomeClass {
List<String> something;
List<String> else;
}
Class SomeClass should be declared as final.
checkstyle:com.puppycrawl.tools.checkstyle.checks.design.FinalClassCheck
Lombok Value marks the class as final already: @Value
It seems that this was previously already fixed by https://sonarsource.atlassian.net/browse/SONARJAVA-3320?jql=text%20~%20"lombok%20value".
The upgrade to SonarQube 9.9.3 made the issue reappear for us.
I am not sure if this belongs to SonarQube or CheckStyle?
Thanks,
Jens