aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/eclipse
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2015-02-02 02:15:32 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2015-02-02 02:15:32 +0100
commit185c6ee684a696e7a32623a80c0ce58352f846f5 (patch)
treed597367ff5e4117ce4956ce5d676a9944c440af0 /src/core/lombok/eclipse
parent209654f19e69932fcc35fade290b878f85f30d81 (diff)
downloadlombok-185c6ee684a696e7a32623a80c0ce58352f846f5.tar.gz
lombok-185c6ee684a696e7a32623a80c0ce58352f846f5.tar.bz2
lombok-185c6ee684a696e7a32623a80c0ce58352f846f5.zip
[trivial] Wither would produce the wrong error message for bad use of onMethod/onParam.
Diffstat (limited to 'src/core/lombok/eclipse')
-rw-r--r--src/core/lombok/eclipse/handlers/HandleWither.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleWither.java b/src/core/lombok/eclipse/handlers/HandleWither.java
index cb06d888..29a6edb7 100644
--- a/src/core/lombok/eclipse/handlers/HandleWither.java
+++ b/src/core/lombok/eclipse/handlers/HandleWither.java
@@ -127,8 +127,8 @@ public class HandleWither extends EclipseAnnotationHandler<Wither> {
AccessLevel level = annotation.getInstance().value();
if (level == AccessLevel.NONE || node == null) return;
- List<Annotation> onMethod = unboxAndRemoveAnnotationParameter(ast, "onMethod", "@Setter(onMethod=", annotationNode);
- List<Annotation> onParam = unboxAndRemoveAnnotationParameter(ast, "onParam", "@Setter(onParam=", annotationNode);
+ List<Annotation> onMethod = unboxAndRemoveAnnotationParameter(ast, "onMethod", "@Wither(onMethod=", annotationNode);
+ List<Annotation> onParam = unboxAndRemoveAnnotationParameter(ast, "onParam", "@Wither(onParam=", annotationNode);
switch (node.getKind()) {
case FIELD: