Hi,
For - SonarCloud 10.4.1
I have reported: S1068 - Unused “private” fields should be removed
My code:
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class Example {
private boolean enabled;
private String username;
private String password;
}
It is only reported by SonarQube - the same code not produce issues in IntelJ with SonarLint - 10.4.1.77998
Issues was not reported by SonarQube 9.x