diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-08-06 22:47:59 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-08-06 22:47:59 +0200 |
commit | 70317c73841d3e83b4b8008b68bea95753a5275f (patch) | |
tree | 1c66ab010930425aa673b3988aa4a5ad3ae1dd13 /src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java | |
parent | d1b0242dc5e38cddd0e1ecc2a089c13e744d75d4 (diff) | |
download | lombok-70317c73841d3e83b4b8008b68bea95753a5275f.tar.gz lombok-70317c73841d3e83b4b8008b68bea95753a5275f.tar.bz2 lombok-70317c73841d3e83b4b8008b68bea95753a5275f.zip |
Added @Value and @FieldDefaults implementations for javac and ecj, the annotations including @NonFinal and @PackagePrivate, and some refactors. No tests yet.
Diffstat (limited to 'src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java')
-rw-r--r-- | src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java b/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java index 50991e7b..0c82b74c 100644 --- a/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java +++ b/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java @@ -108,13 +108,9 @@ public class HandleEqualsAndHashCode extends EclipseAnnotationHandler<EqualsAndH } public void generateEqualsAndHashCodeForType(EclipseNode typeNode, EclipseNode errorNode) { - for (EclipseNode child : typeNode.down()) { - if (child.getKind() == Kind.ANNOTATION) { - if (annotationTypeMatches(EqualsAndHashCode.class, child)) { - //The annotation will make it happen, so we can skip it. - return; - } - } + if (hasAnnotation(EqualsAndHashCode.class, typeNode)) { + //The annotation will make it happen, so we can skip it. + return; } generateMethods(typeNode, errorNode, null, null, null, false, FieldAccess.GETTER); |