View | Details | Raw Unified | Return to bug 207411
Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java (+1 lines)
Lines 603-608 Link Here
603
				TypeBinding annotationType = annotation.getAnnotationType();
603
				TypeBinding annotationType = annotation.getAnnotationType();
604
				boolean foundDuplicate = false;
604
				boolean foundDuplicate = false;
605
				for (int j = i+1; j < length; j++) {
605
				for (int j = i+1; j < length; j++) {
606
					if (distinctAnnotations[j] == null) continue;
606
					if (distinctAnnotations[j].getAnnotationType() == annotationType) {
607
					if (distinctAnnotations[j].getAnnotationType() == annotationType) {
607
						foundDuplicate = true;
608
						foundDuplicate = true;
608
						if (distinctAnnotations == annotations) {
609
						if (distinctAnnotations == annotations) {

Return to bug 207411