removed the suppressConstructorProperties param.

This commit is contained in:
Reinier Zwitserloot
2017-03-07 01:12:28 +01:00
parent d05d037433
commit a2c10c70fa
9 changed files with 35 additions and 88 deletions
@@ -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;
}