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

(-)compiler/org/eclipse/jdt/internal/compiler/ast/ConstructorDeclaration.java (+1 lines)
Lines 416-421 Link Here
416
416
417
	ConstructorDeclaration targetConstructor =
417
	ConstructorDeclaration targetConstructor =
418
		((ConstructorDeclaration)this.scope.referenceType().declarationOf(this.constructorCall.binding.original()));
418
		((ConstructorDeclaration)this.scope.referenceType().declarationOf(this.constructorCall.binding.original()));
419
	if (targetConstructor == null) return false; 
419
	if (this == targetConstructor) return true; // direct case
420
	if (this == targetConstructor) return true; // direct case
420
421
421
	if (visited == null) { // lazy allocation
422
	if (visited == null) { // lazy allocation

Return to bug 358762