diff options
-rw-r--r-- | src/lombok/eclipse/Eclipse.java | 6 | ||||
-rw-r--r-- | src/lombok/eclipse/handlers/HandleEqualsAndHashCode.java | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/eclipse/Eclipse.java b/src/lombok/eclipse/Eclipse.java index 017affa1..361727bc 100644 --- a/src/lombok/eclipse/Eclipse.java +++ b/src/lombok/eclipse/Eclipse.java @@ -275,16 +275,16 @@ public class Eclipse { public static Annotation copyAnnotation(Annotation annotation) { if (annotation instanceof MarkerAnnotation) { - return new MarkerAnnotation(copyType(annotation.type), annotation.sourceStart); + return new MarkerAnnotation(copyType(annotation.type), 0); } if (annotation instanceof SingleMemberAnnotation) { - SingleMemberAnnotation result = new SingleMemberAnnotation(copyType(annotation.type), annotation.sourceStart); + SingleMemberAnnotation result = new SingleMemberAnnotation(copyType(annotation.type), 0); result.memberValue = ((SingleMemberAnnotation)annotation).memberValue; } if (annotation instanceof NormalAnnotation) { - NormalAnnotation result = new NormalAnnotation(copyType(annotation.type), annotation.sourceStart); + NormalAnnotation result = new NormalAnnotation(copyType(annotation.type), 0); result.memberValuePairs = ((NormalAnnotation)annotation).memberValuePairs; } diff --git a/src/lombok/eclipse/handlers/HandleEqualsAndHashCode.java b/src/lombok/eclipse/handlers/HandleEqualsAndHashCode.java index 1adbe781..d4435fce 100644 --- a/src/lombok/eclipse/handlers/HandleEqualsAndHashCode.java +++ b/src/lombok/eclipse/handlers/HandleEqualsAndHashCode.java @@ -223,7 +223,7 @@ public class HandleEqualsAndHashCode implements EclipseAnnotationHandler<EqualsA method.modifiers = PKG.toModifier(AccessLevel.PUBLIC); method.returnType = TypeReference.baseTypeReference(TypeIds.T_int, 0); method.annotations = new Annotation[] { - new MarkerAnnotation(new QualifiedTypeReference(TypeConstants.JAVA_LANG_OVERRIDE, new long[] { 0, 0, 0}), 0) + new MarkerAnnotation(new QualifiedTypeReference(TypeConstants.JAVA_LANG_OVERRIDE, new long[] {0, 0, 0}), 0) }; method.selector = "hashCode".toCharArray(); method.thrownExceptions = null; |