aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2015-08-13 12:20:49 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2015-08-13 12:20:49 +0100
commit6ca549224f4db8dc431f624d1f09556c8939eaed (patch)
tree22f52cbae6ed77105a93a4f302e139ac071d6e71
parent2fc0bb6fd8472b500c06e2ea5e275151a23f1b73 (diff)
downloadlombok-6ca549224f4db8dc431f624d1f09556c8939eaed.tar.gz
lombok-6ca549224f4db8dc431f624d1f09556c8939eaed.tar.bz2
lombok-6ca549224f4db8dc431f624d1f09556c8939eaed.zip
[trivial] [refactor] resorted order of configuration key constants to be alphabetical.
-rw-r--r--src/core/lombok/ConfigurationKeys.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/lombok/ConfigurationKeys.java b/src/core/lombok/ConfigurationKeys.java
index 52f9f30a..699354e4 100644
--- a/src/core/lombok/ConfigurationKeys.java
+++ b/src/core/lombok/ConfigurationKeys.java
@@ -402,23 +402,23 @@ public class ConfigurationKeys {
*/
public static final ConfigurationKey<FlagUsageType> FIELD_DEFAULTS_FLAG_USAGE = new ConfigurationKey<FlagUsageType>("lombok.fieldDefaults.flagUsage", "Emit a warning or error if @FieldDefaults is used.") {};
- // ----- Wither -----
+ // ----- UtilityClass -----
/**
- * lombok configuration: {@code lombok.wither.flagUsage} = {@code WARNING} | {@code ERROR}.
+ * lombok configuration: {@code lombok.utilityClass.flagUsage} = {@code WARNING} | {@code ERROR}.
*
- * If set, <em>any</em> usage of {@code @Wither} results in a warning / error.
+ * If set, <em>any</em> usage of {@code @UtilityClass} results in a warning / error.
*/
- public static final ConfigurationKey<FlagUsageType> WITHER_FLAG_USAGE = new ConfigurationKey<FlagUsageType>("lombok.wither.flagUsage", "Emit a warning or error if @Wither is used.") {};
+ public static final ConfigurationKey<FlagUsageType> UTILITY_CLASS_FLAG_USAGE = new ConfigurationKey<FlagUsageType>("lombok.utilityClass.flagUsage", "Emit a warning or error if @UtilityClass is used.") {};
- // ----- UtilityClass -----
+ // ----- Wither -----
/**
- * lombok configuration: {@code lombok.utilityClass.flagUsage} = {@code WARNING} | {@code ERROR}.
+ * lombok configuration: {@code lombok.wither.flagUsage} = {@code WARNING} | {@code ERROR}.
*
- * If set, <em>any</em> usage of {@code @UtilityClass} results in a warning / error.
+ * If set, <em>any</em> usage of {@code @Wither} results in a warning / error.
*/
- public static final ConfigurationKey<FlagUsageType> UTILITY_CLASS_FLAG_USAGE = new ConfigurationKey<FlagUsageType>("lombok.utilityClass.flagUsage", "Emit a warning or error if @UtilityClass is used.") {};
+ public static final ConfigurationKey<FlagUsageType> WITHER_FLAG_USAGE = new ConfigurationKey<FlagUsageType>("lombok.wither.flagUsage", "Emit a warning or error if @Wither is used.") {};
// ----- Configuration System -----