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

(-)model/org/eclipse/jdt/internal/core/NameLookup.java (-1 / +1 lines)
Lines 157-163 Link Here
157
							IType[] existingTypes = (IType[]) existing;
157
							IType[] existingTypes = (IType[]) existing;
158
							int existingTypeLength = existingTypes.length;
158
							int existingTypeLength = existingTypes.length;
159
							System.arraycopy(existingTypes, 0, existingTypes = new IType[existingTypeLength+1], 0, existingTypeLength);
159
							System.arraycopy(existingTypes, 0, existingTypes = new IType[existingTypeLength+1], 0, existingTypeLength);
160
							existingTypes[length] = type;
160
							existingTypes[existingTypeLength] = type;
161
							typeMap.put(typeName, existingTypes);
161
							typeMap.put(typeName, existingTypes);
162
						}
162
						}
163
					}
163
					}

Return to bug 77273