diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-01-18 20:26:08 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-01-18 20:26:08 +0100 |
commit | 5767628efeb66644827f89861425ff173803b9ad (patch) | |
tree | c15dd4b21eeeb5969b54f2f6a3323c2c46171262 /src/core/lombok/Getter.java | |
parent | 08868a2076f827958f1f3b89f084abbc32c3f423 (diff) | |
download | lombok-5767628efeb66644827f89861425ff173803b9ad.tar.gz lombok-5767628efeb66644827f89861425ff173803b9ad.tar.bz2 lombok-5767628efeb66644827f89861425ff173803b9ad.zip |
[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.
Diffstat (limited to 'src/core/lombok/Getter.java')
-rw-r--r-- | src/core/lombok/Getter.java | 10 |
1 files changed, 0 insertions, 10 deletions
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. * <p> @@ -56,13 +53,6 @@ import lombok.core.configuration.ConfigurationKey; @Retention(RetentionPolicy.SOURCE) public @interface Getter { /** - * lombok configuration: {@code lombok.Getter.flagUsage} = {@code WARNING} | {@code ERROR}. - * - * If set, <em>any</em> usage of {@code @Getter} results in a warning / error. - */ - ConfigurationKey<FlagUsageType> FLAG_USAGE = new ConfigurationKey<FlagUsageType>("lombok.Getter.flagUsage") {}; - - /** * If you want your getter to be non-public, you can specify an alternate access level here. */ lombok.AccessLevel value() default lombok.AccessLevel.PUBLIC; |