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

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/hierarchy/HierarchyResolver.java (+4 lines)
Lines 502-508 Link Here
502
	fixSupertypeBindings();
502
	fixSupertypeBindings();
503
503
504
	int objectIndex = -1;
504
	int objectIndex = -1;
505
	IProgressMonitor progressMonitor = this.builder.hierarchy.progressMonitor;
505
	for (int current = this.typeIndex; current >= 0; current--) {
506
	for (int current = this.typeIndex; current >= 0; current--) {
507
		if (progressMonitor != null && progressMonitor.isCanceled())
508
			throw new OperationCanceledException();
509
		
506
		ReferenceBinding typeBinding = this.typeBindings[current];
510
		ReferenceBinding typeBinding = this.typeBindings[current];
507
511
508
		// java.lang.Object treated at the end
512
		// java.lang.Object treated at the end

Return to bug 307040