diff options
Diffstat (limited to 'test/transform/resource/after-ecj/ValuePlain.java')
-rw-r--r-- | test/transform/resource/after-ecj/ValuePlain.java | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/transform/resource/after-ecj/ValuePlain.java b/test/transform/resource/after-ecj/ValuePlain.java index 0ff7369e..442a63ac 100644 --- a/test/transform/resource/after-ecj/ValuePlain.java +++ b/test/transform/resource/after-ecj/ValuePlain.java @@ -38,11 +38,6 @@ final @lombok.Value class Value1 { this.x = x; this.name = name; } - private @java.lang.SuppressWarnings("all") Value1() { - super(); - this.x = 0; - this.name = null; - } } @Value @lombok.experimental.NonFinal class Value2 { public final int x; @@ -88,11 +83,6 @@ final @lombok.Value class Value1 { this.x = x; this.name = name; } - private @java.lang.SuppressWarnings("all") Value2() { - super(); - this.x = 0; - this.name = null; - } } final @Value class Value3 { private @lombok.experimental.NonFinal int x; @@ -130,8 +120,4 @@ final @Value class Value3 { this.x = x; this.y = y; } - private @java.lang.SuppressWarnings("all") Value3() { - super(); - this.y = 0; - } } |