### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: compiler/org/eclipse/jdt/internal/compiler/ast/Annotation.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/Annotation.java,v retrieving revision 1.52 diff -u -r1.52 Annotation.java --- compiler/org/eclipse/jdt/internal/compiler/ast/Annotation.java 30 Jan 2006 19:01:13 -0000 1.52 +++ compiler/org/eclipse/jdt/internal/compiler/ast/Annotation.java 31 Jan 2006 21:33:39 -0000 @@ -292,7 +292,6 @@ scope.problemReporter().missingValueForAnnotationMember(this, selector); } } - this.compilerAnnotation = new AnnotationBinding(this); // check unused pairs for (int i = 0; i < pairsLength; i++) { if (pairs[i] != null) { @@ -300,6 +299,7 @@ pairs[i].resolveTypeExpecting(scope, null); // resilient } } + this.compilerAnnotation = new AnnotationBinding(this); // recognize standard annotations ? long tagBits = detectStandardAnnotation(scope, annotationType, valueAttribute);