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 /src/core/lombok/Getter.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 'src/core/lombok/Getter.java')
-rw-r--r-- | src/core/lombok/Getter.java | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/lombok/Getter.java b/src/core/lombok/Getter.java index c42277b1..485f8cf0 100644 --- a/src/core/lombok/Getter.java +++ b/src/core/lombok/Getter.java @@ -59,20 +59,5 @@ public @interface Getter { */ lombok.AccessLevel value() default lombok.AccessLevel.PUBLIC; - /** - * If you want your getter method to have additional annotations, you can specify them here.<br/> - * If the {@code @Getter} is put on a type, {@code onMethod} may not be specified. - */ - AnyAnnotation[] onMethod() default {}; - boolean lazy() default false; - - /** - * Placeholder annotation to enable the placement of annotations on the getter method. - * @deprecated Don't use this annotation, since we might remove it. - */ - @Deprecated - @Retention(RetentionPolicy.SOURCE) - @Target({}) - @interface AnyAnnotation {} } |