aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-eclipse/Constructors.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-eclipse/Constructors.java')
-rw-r--r--test/transform/resource/after-eclipse/Constructors.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/transform/resource/after-eclipse/Constructors.java b/test/transform/resource/after-eclipse/Constructors.java
index e4fba7ff..e47ec8b5 100644
--- a/test/transform/resource/after-eclipse/Constructors.java
+++ b/test/transform/resource/after-eclipse/Constructors.java
@@ -6,7 +6,6 @@
this.x = x;
}
}
-
@lombok.RequiredArgsConstructor(access = lombok.AccessLevel.PROTECTED) class RequiredArgsConstructorAccess {
final int x;
String name;
@@ -15,7 +14,6 @@
this.x = x;
}
}
-
@lombok.RequiredArgsConstructor(staticName = "staticname") class RequiredArgsConstructorStaticName {
final int x;
String name;
@@ -27,16 +25,6 @@
return new RequiredArgsConstructorStaticName(x);
}
}
-
-@lombok.RequiredArgsConstructor() class RequiredArgsConstructorWithAnnotations {
- final int x;
- String name;
- public @Deprecated @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") RequiredArgsConstructorWithAnnotations(final int x) {
- super();
- this.x = x;
- }
-}
-
@lombok.AllArgsConstructor class AllArgsConstructor1 {
final int x;
String name;
@@ -46,7 +34,6 @@
this.name = name;
}
}
-
@lombok.NoArgsConstructor class NoArgsConstructor1 {
final int x;
String name;