diff options
author | Roel Spilker <r.spilker@gmail.com> | 2018-05-28 21:54:12 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2018-05-28 21:54:12 +0200 |
commit | 6045c1b8f524064a492b0dae9fbfbe89a1dca232 (patch) | |
tree | 2761ead796c6203c8bd28a607b311bf57bf5a1ad /test/transform/resource/after-ecj/ValuePlain.java | |
parent | 4fb9c6f7f82d020a9ebcae9816e911ecd4c047a4 (diff) | |
download | lombok-6045c1b8f524064a492b0dae9fbfbe89a1dca232.tar.gz lombok-6045c1b8f524064a492b0dae9fbfbe89a1dca232.tar.bz2 lombok-6045c1b8f524064a492b0dae9fbfbe89a1dca232.zip |
Generate default no-args constructor
Diffstat (limited to 'test/transform/resource/after-ecj/ValuePlain.java')
-rw-r--r-- | test/transform/resource/after-ecj/ValuePlain.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/ValuePlain.java b/test/transform/resource/after-ecj/ValuePlain.java index 442a63ac..0ff7369e 100644 --- a/test/transform/resource/after-ecj/ValuePlain.java +++ b/test/transform/resource/after-ecj/ValuePlain.java @@ -38,6 +38,11 @@ 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; @@ -83,6 +88,11 @@ 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; @@ -120,4 +130,8 @@ final @Value class Value3 { this.x = x; this.y = y; } + private @java.lang.SuppressWarnings("all") Value3() { + super(); + this.y = 0; + } } |