mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-05 14:23:31 +00:00
removed the suppressConstructorProperties param.
This commit is contained in:
@@ -6,12 +6,3 @@ class ConstructorsConfiguration {
|
||||
this.x = x;
|
||||
}
|
||||
}
|
||||
class ConstructorsConfigurationExplicit {
|
||||
int x;
|
||||
@java.beans.ConstructorProperties({"x"})
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@javax.annotation.Generated("lombok")
|
||||
public ConstructorsConfigurationExplicit(final int x) {
|
||||
this.x = x;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,10 +5,3 @@
|
||||
this.x = x;
|
||||
}
|
||||
}
|
||||
@lombok.AllArgsConstructor(suppressConstructorProperties = false) class ConstructorsConfigurationExplicit {
|
||||
int x;
|
||||
public @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") ConstructorsConfigurationExplicit(final int x) {
|
||||
super();
|
||||
this.x = x;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,3 @@
|
||||
class ConstructorsConfiguration {
|
||||
int x;
|
||||
}
|
||||
@lombok.AllArgsConstructor(suppressConstructorProperties=false)
|
||||
class ConstructorsConfigurationExplicit {
|
||||
int x;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user