diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-08-13 12:20:09 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-08-13 12:20:09 +0100 |
commit | 2fc0bb6fd8472b500c06e2ea5e275151a23f1b73 (patch) | |
tree | cb27fd5df75ac80a1d3bda6d41ed8b061d7e1c0a /src/core/lombok/eclipse | |
parent | cb944f61bc965deb8ee98603dfd7b94b3db06046 (diff) | |
download | lombok-2fc0bb6fd8472b500c06e2ea5e275151a23f1b73.tar.gz lombok-2fc0bb6fd8472b500c06e2ea5e275151a23f1b73.tar.bz2 lombok-2fc0bb6fd8472b500c06e2ea5e275151a23f1b73.zip |
fixing typo in constant name of utility class config flag.
Diffstat (limited to 'src/core/lombok/eclipse')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleUtilityClass.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleUtilityClass.java b/src/core/lombok/eclipse/handlers/HandleUtilityClass.java index c3c85ad4..199ce102 100644 --- a/src/core/lombok/eclipse/handlers/HandleUtilityClass.java +++ b/src/core/lombok/eclipse/handlers/HandleUtilityClass.java @@ -60,7 +60,7 @@ import lombok.experimental.UtilityClass; @ProviderFor(EclipseAnnotationHandler.class) public class HandleUtilityClass extends EclipseAnnotationHandler<UtilityClass> { @Override public void handle(AnnotationValues<UtilityClass> annotation, Annotation ast, EclipseNode annotationNode) { - handleFlagUsage(annotationNode, ConfigurationKeys.UTLITY_CLASS_FLAG_USAGE, "@UtilityClass"); + handleFlagUsage(annotationNode, ConfigurationKeys.UTILITY_CLASS_FLAG_USAGE, "@UtilityClass"); EclipseNode typeNode = annotationNode.up(); if (!checkLegality(typeNode, annotationNode)) return; |