View | Details | Raw Unified | Return to bug 125807 | Differences between
and this patch

Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/ast/Annotation.java (-1 / +1 lines)
Lines 292-298 Link Here
292
				scope.problemReporter().missingValueForAnnotationMember(this, selector);
292
				scope.problemReporter().missingValueForAnnotationMember(this, selector);
293
			}
293
			}
294
		}
294
		}
295
		this.compilerAnnotation = new AnnotationBinding(this);
296
		// check unused pairs
295
		// check unused pairs
297
		for (int i = 0; i < pairsLength; i++) {
296
		for (int i = 0; i < pairsLength; i++) {
298
			if (pairs[i] != null) {
297
			if (pairs[i] != null) {
Lines 300-305 Link Here
300
				pairs[i].resolveTypeExpecting(scope, null); // resilient
299
				pairs[i].resolveTypeExpecting(scope, null); // resilient
301
			}
300
			}
302
		}
301
		}
302
		this.compilerAnnotation = new AnnotationBinding(this);
303
		// recognize standard annotations ?
303
		// recognize standard annotations ?
304
		long tagBits = detectStandardAnnotation(scope, annotationType, valueAttribute);
304
		long tagBits = detectStandardAnnotation(scope, annotationType, valueAttribute);
305
305

Return to bug 125807