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

(-)model/org/eclipse/jdt/internal/core/hierarchy/HierarchyResolver.java (-1 / +1 lines)
Lines 254-260 Link Here
254
		TypeDeclaration typeDeclaration = scope.referenceContext;
254
		TypeDeclaration typeDeclaration = scope.referenceContext;
255
		TypeReference[] superInterfaces = typeDeclaration == null ? null : typeDeclaration.superInterfaces;
255
		TypeReference[] superInterfaces = typeDeclaration == null ? null : typeDeclaration.superInterfaces;
256
		int length;
256
		int length;
257
		if (superInterfaces != null && (length = superInterfaces.length) > interfaceBindings.length) {
257
		if (superInterfaces != null && (length = superInterfaces.length) > (interfaceBindings == null ? 0 : interfaceBindings.length)) {
258
			
258
			
259
			interfaceBindings = new ReferenceBinding[length];
259
			interfaceBindings = new ReferenceBinding[length];
260
			int index = 0;
260
			int index = 0;

Return to bug 139689