blob: c6590132a3a60daaff9cc2cb7c8167ad47c85017 (
plain)
1
2
3
4
|
13 @Builder.Default requires @Builder on the class for it to mean anything.
8 @Builder.Default requires an initializing expression (' = something;').
9 @Builder.Default and @Singular cannot be mixed.
6 @Builder will ignore the initializing expression entirely. If you want the initializing expression to serve as default, add @Builder.Default. If it is not supposed to be settable during building, make the field final.
|