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

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/hierarchy/HierarchyResolver.java (+2 lines)
Lines 846-851 Link Here
846
					char[][] memberTypeNames = CharOperation.splitOn('$', typeName, firstDollar+1, typeName.length);
846
					char[][] memberTypeNames = CharOperation.splitOn('$', typeName, firstDollar+1, typeName.length);
847
					for (int i = 0; i < memberTypeNames.length; i++) {
847
					for (int i = 0; i < memberTypeNames.length; i++) {
848
						this.focusType = this.focusType.getMemberType(memberTypeNames[i]);
848
						this.focusType = this.focusType.getMemberType(memberTypeNames[i]);
849
						if (this.focusType == null)
850
							return this.focusType;
849
					}
851
					}
850
				}
852
				}
851
			}
853
			}

Return to bug 355605