False positive (S1170) when using `@lombok.Builder.Default` on final fields for @SuperBuilder

When using Lomboks @SuperBuilder (lombok.experimental.SuperBuilder) on immutable classes sonarqube reports that the field should be static too (S1170 - Make this final field static too.). However the Builder generated by Lombok will use this value as default/fallback value when initializing an entity.

Example:

This is basically the same issue as described for @lombok.Builder (already fixed/implemented):

and fixed

Hello @bernda,

Indeed, it looks like a false positive. A ticket has been created handle the issue.

Best,

Dorian