From 5767628efeb66644827f89861425ff173803b9ad Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sat, 18 Jan 2014 20:26:08 +0100 Subject: [configuration] Moved ALL ConfigurationKey constants into 'ConfigurationKeys'; that bug where fields in annotation defs causes issues is too endemic to try and work around these. --- src/core/lombok/Getter.java | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/core/lombok/Getter.java') diff --git a/src/core/lombok/Getter.java b/src/core/lombok/Getter.java index a38a0ca5..57f5e40a 100644 --- a/src/core/lombok/Getter.java +++ b/src/core/lombok/Getter.java @@ -26,9 +26,6 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; -import lombok.core.FlagUsageType; -import lombok.core.configuration.ConfigurationKey; - /** * Put on any field to make lombok build a standard getter. *

@@ -55,13 +52,6 @@ import lombok.core.configuration.ConfigurationKey; @Target({ElementType.FIELD, ElementType.TYPE}) @Retention(RetentionPolicy.SOURCE) public @interface Getter { - /** - * lombok configuration: {@code lombok.Getter.flagUsage} = {@code WARNING} | {@code ERROR}. - * - * If set, any usage of {@code @Getter} results in a warning / error. - */ - ConfigurationKey FLAG_USAGE = new ConfigurationKey("lombok.Getter.flagUsage") {}; - /** * If you want your getter to be non-public, you can specify an alternate access level here. */ -- cgit