diff options
Diffstat (limited to 'src/core/lombok/val.java')
-rw-r--r-- | src/core/lombok/val.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/lombok/val.java b/src/core/lombok/val.java index 317da1f3..cd8652d6 100644 --- a/src/core/lombok/val.java +++ b/src/core/lombok/val.java @@ -21,9 +21,6 @@ */ package lombok; -import lombok.core.FlagUsageType; -import lombok.core.configuration.ConfigurationKey; - /** * Use {@code val} as the type of any local variable declaration (even in a for-each statement), and the type will be inferred from the initializing expression. * For example: {@code val x = 10.0;} will infer {@code double}, and {@code val y = new ArrayList<String>();} will infer {@code ArrayList<String>}. The local variable @@ -34,10 +31,4 @@ import lombok.core.configuration.ConfigurationKey; * Complete documentation is found at <a href="http://projectlombok.org/features/val.html">the project lombok features page for @val</a>. */ public @interface val { - /** - * lombok configuration: {@code lombok.val.flagUsage} = {@code WARNING} | {@code ERROR}. - * - * If set, <em>any</em> usage of {@code val} results in a warning / error. - */ - ConfigurationKey<FlagUsageType> FLAG_USAGE = new ConfigurationKey<FlagUsageType>("lombok.val.flagUsage") {}; } |