mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 18:22:54 +00:00
New feature: FieldDefaults can now be configured to apply to _every_ file, regardless of annotations.
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
@lombok.RequiredArgsConstructor class FieldDefaultsViaConfigAndRequiredArgsConstructor {
|
||||
final int x;
|
||||
public @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") FieldDefaultsViaConfigAndRequiredArgsConstructor(final int x) {
|
||||
super();
|
||||
this.x = x;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user