From a284600987065aa78bc41b2099421f864cfcec20 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 15 Aug 2011 21:21:51 +0200 Subject: Removed support for onMethod, onParam and onConstructor due to javac7 type incapabilities. Issue #251 --- src/core/lombok/Getter.java | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/core/lombok/Getter.java') 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.
- * 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 {} } -- cgit