Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 327162
Collapse All | Expand All

(-)src/org/eclipse/wst/jsdt/internal/ui/typehierarchy/SuperTypeHierarchyViewer.java (-1 / +4 lines)
Lines 63-69 Link Here
63
			ITypeHierarchy hierarchy= getHierarchy();
63
			ITypeHierarchy hierarchy= getHierarchy();
64
			if (hierarchy != null) {
64
			if (hierarchy != null) {
65
				IType superClass= hierarchy.getSuperclass(type);
65
				IType superClass= hierarchy.getSuperclass(type);
66
				res.add(superClass);
66
67
				if (superClass != null) {
68
					res.add(superClass);
69
				}
67
			}
70
			}
68
		}
71
		}
69
		
72
		

Return to bug 327162