Hi, I found two false positives about the rule RSPEC-2974, see the code below. SonarQube should not report a warning because the annotation @NoArgsConstructor and @AllArgsConstructor can generate a new public constructor in the class. Hence, I think they are false positive.
import lombok.NoArgsConstructor;
@NoArgsConstructor
public class C {
private C() {
// ...
}
public static int magic(){
return 42;
}
}
import lombok.AllArgsConstructor;
@AllArgsConstructor
public class C {
private C() {
// ...
}
public static int magic(){
return 42;
}
}
SonarQube 9.7 is already past EOL. You should upgrade to either the latest version or the current LTS at your earliest convenience. Your upgrade path is:
thanks for your report! You are right, since these classes actually have public constructors in their bytecode representation, the rule should make an exception if a class is annotated with lombok.NoArgsConstructor or lombok.AllArgsConstructor.