diff options
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 {} } |