aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValuePlain.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2018-06-04 23:36:06 +0200
committerRoel Spilker <r.spilker@gmail.com>2018-06-04 23:36:45 +0200
commita74db7c10c61c7a18e8fed774cac1e0cde534009 (patch)
tree46106687a476be3a940efbfb27c98c8d5ef0912a /test/transform/resource/after-delombok/ValuePlain.java
parentb8e85f5dc7044e9a4bd43c41786bdda2a38f50ac (diff)
downloadlombok-a74db7c10c61c7a18e8fed774cac1e0cde534009.tar.gz
lombok-a74db7c10c61c7a18e8fed774cac1e0cde534009.tar.bz2
lombok-a74db7c10c61c7a18e8fed774cac1e0cde534009.zip
Make `extraPrivate` opt-in instead of opt-out. Fixes #1708
Diffstat (limited to 'test/transform/resource/after-delombok/ValuePlain.java')
-rw-r--r--test/transform/resource/after-delombok/ValuePlain.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/transform/resource/after-delombok/ValuePlain.java b/test/transform/resource/after-delombok/ValuePlain.java
index 0cbd8621..cf2c1142 100644
--- a/test/transform/resource/after-delombok/ValuePlain.java
+++ b/test/transform/resource/after-delombok/ValuePlain.java
@@ -7,11 +7,6 @@ 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;
}
@@ -56,11 +51,6 @@ 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;
}
@@ -110,10 +100,6 @@ 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;
}