diff options
Diffstat (limited to 'test/transform/resource/after-delombok/Constructors.java')
-rw-r--r-- | test/transform/resource/after-delombok/Constructors.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/test/transform/resource/after-delombok/Constructors.java b/test/transform/resource/after-delombok/Constructors.java index f8b090a1..fb906c73 100644 --- a/test/transform/resource/after-delombok/Constructors.java +++ b/test/transform/resource/after-delombok/Constructors.java @@ -1,56 +1,36 @@ class RequiredArgsConstructor1 { final int x; String name; - @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") public RequiredArgsConstructor1(final int x) { this.x = x; } } - class RequiredArgsConstructorAccess { final int x; String name; - @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") protected RequiredArgsConstructorAccess(final int x) { this.x = x; } } - class RequiredArgsConstructorStaticName { final int x; String name; - @java.lang.SuppressWarnings("all") private RequiredArgsConstructorStaticName(final int x) { this.x = x; } - @java.lang.SuppressWarnings("all") public static RequiredArgsConstructorStaticName staticname(final int x) { return new RequiredArgsConstructorStaticName(x); } } - -class RequiredArgsConstructorWithAnnotations { - final int x; - String name; - - @Deprecated - @java.beans.ConstructorProperties({"x"}) - @java.lang.SuppressWarnings("all") - public RequiredArgsConstructorWithAnnotations(final int x) { - this.x = x; - } -} - class AllArgsConstructor1 { final int x; String name; - @java.beans.ConstructorProperties({"x", "name"}) @java.lang.SuppressWarnings("all") public AllArgsConstructor1(final int x, final String name) { @@ -58,11 +38,9 @@ class AllArgsConstructor1 { this.name = name; } } - class NoArgsConstructor1 { final int x; String name; - @java.lang.SuppressWarnings("all") public NoArgsConstructor1() { } |