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

(-)compiler/org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding.java (-1 lines)
Lines 835-841 Link Here
835
	variable.superInterfaces = bounds == null ? Binding.NO_SUPERINTERFACES : bounds;
835
	variable.superInterfaces = bounds == null ? Binding.NO_SUPERINTERFACES : bounds;
836
	if (firstBound == null) {
836
	if (firstBound == null) {
837
		firstBound = variable.superInterfaces.length == 0 ? null : variable.superInterfaces[0];
837
		firstBound = variable.superInterfaces.length == 0 ? null : variable.superInterfaces[0];
838
		variable.modifiers |= ClassFileConstants.AccInterface;
839
	}
838
	}
840
	variable.firstBound = firstBound;
839
	variable.firstBound = firstBound;
841
}
840
}

Return to bug 162991