diff options
author | Roel Spilker <r.spilker@gmail.com> | 2011-08-15 21:21:51 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2011-08-15 21:21:51 +0200 |
commit | a284600987065aa78bc41b2099421f864cfcec20 (patch) | |
tree | 1c8b7dd807bef387bba0c0cda42b8d6550bd3ce3 /test/transform/resource/after-eclipse/Constructors.java | |
parent | 55cb9f8dac271fe0facd2ce2ad365f8084942181 (diff) | |
download | lombok-a284600987065aa78bc41b2099421f864cfcec20.tar.gz lombok-a284600987065aa78bc41b2099421f864cfcec20.tar.bz2 lombok-a284600987065aa78bc41b2099421f864cfcec20.zip |
Removed support for onMethod, onParam and onConstructor due to javac7 type incapabilities. Issue #251
Diffstat (limited to 'test/transform/resource/after-eclipse/Constructors.java')
-rw-r--r-- | test/transform/resource/after-eclipse/Constructors.java | 13 |
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; |