diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-03-06 23:34:23 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-03-07 01:12:24 +0100 |
commit | d05d03743316e45abfd0d00397999d7eb959eb64 (patch) | |
tree | bfccd4cc021b83355e49fab83120e8f93e458d69 /src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java | |
parent | 8bfbd7fa846537c9393350e02c459c6878c0dec2 (diff) | |
download | lombok-d05d03743316e45abfd0d00397999d7eb959eb64.tar.gz lombok-d05d03743316e45abfd0d00397999d7eb959eb64.tar.bz2 lombok-d05d03743316e45abfd0d00397999d7eb959eb64.zip |
Fixed issue #778: problems with onX if the annotation to be added has named args.
Diffstat (limited to 'src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java b/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java index bc25ae2a..ceef3d3c 100644 --- a/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java +++ b/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java @@ -129,7 +129,7 @@ public class HandleEqualsAndHashCode extends EclipseAnnotationHandler<EqualsAndH List<String> includes = Arrays.asList(ann.of()); EclipseNode typeNode = annotationNode.up(); - List<Annotation> onParam = unboxAndRemoveAnnotationParameter(ast, "onParam", "@EqualsAndHashCode(onParam=", annotationNode); + List<Annotation> onParam = unboxAndRemoveAnnotationParameter(ast, "onParam", "@EqualsAndHashCode(onParam", annotationNode); checkForBogusFieldNames(typeNode, annotation); Boolean callSuper = ann.callSuper(); |