diff options
Diffstat (limited to 'test/transform/resource/after-delombok/ValuePlain.java')
-rw-r--r-- | test/transform/resource/after-delombok/ValuePlain.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValuePlain.java b/test/transform/resource/after-delombok/ValuePlain.java index cf2c1142..0cbd8621 100644 --- a/test/transform/resource/after-delombok/ValuePlain.java +++ b/test/transform/resource/after-delombok/ValuePlain.java @@ -7,6 +7,11 @@ final class Value1 { this.name = name; } @java.lang.SuppressWarnings("all") + private Value1() { + this.x = 0; + this.name = null; + } + @java.lang.SuppressWarnings("all") public int getX() { return this.x; } @@ -51,6 +56,11 @@ class Value2 { this.name = name; } @java.lang.SuppressWarnings("all") + private Value2() { + this.x = 0; + this.name = null; + } + @java.lang.SuppressWarnings("all") public int getX() { return this.x; } @@ -100,6 +110,10 @@ final class Value3 { this.y = y; } @java.lang.SuppressWarnings("all") + private Value3() { + this.y = 0; + } + @java.lang.SuppressWarnings("all") public int getX() { return this.x; } |