aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValuePlain.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2018-05-28 21:54:12 +0200
committerRoel Spilker <r.spilker@gmail.com>2018-05-28 21:54:12 +0200
commit6045c1b8f524064a492b0dae9fbfbe89a1dca232 (patch)
tree2761ead796c6203c8bd28a607b311bf57bf5a1ad /test/transform/resource/after-delombok/ValuePlain.java
parent4fb9c6f7f82d020a9ebcae9816e911ecd4c047a4 (diff)
downloadlombok-6045c1b8f524064a492b0dae9fbfbe89a1dca232.tar.gz
lombok-6045c1b8f524064a492b0dae9fbfbe89a1dca232.tar.bz2
lombok-6045c1b8f524064a492b0dae9fbfbe89a1dca232.zip
Generate default no-args constructor
Diffstat (limited to 'test/transform/resource/after-delombok/ValuePlain.java')
-rw-r--r--test/transform/resource/after-delombok/ValuePlain.java14
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;
}