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

(-)model/org/eclipse/jdt/internal/core/hierarchy/HierarchyResolver.java (-2 / +2 lines)
Lines 164-172 Link Here
164
		TypeBinding superclass = superclassRef == null ? null : superclassRef.resolvedType;
164
		TypeBinding superclass = superclassRef == null ? null : superclassRef.resolvedType;
165
		if (superclass instanceof ProblemReferenceBinding) {
165
		if (superclass instanceof ProblemReferenceBinding) {
166
			superclass = ((ProblemReferenceBinding) superclass).closestMatch;
166
			superclass = ((ProblemReferenceBinding) superclass).closestMatch;
167
			if (superclass != null) 
168
				((SourceTypeBinding) typeBinding).superclass = superBinding = (ReferenceBinding) superclass;
169
		}
167
		}
168
		if (superclass != null) 
169
			((SourceTypeBinding) typeBinding).superclass = superBinding = (ReferenceBinding) superclass;
170
	}
170
	}
171
	
171
	
172
	if (superBinding != null) {
172
	if (superBinding != null) {

Return to bug 145500