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

Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/lookup/BinaryTypeBinding.java (+4 lines)
Lines 1220-1223 Link Here
1220
MethodBinding[] unResolvedMethods() { // for the MethodVerifier so it doesn't resolve types
1220
MethodBinding[] unResolvedMethods() { // for the MethodVerifier so it doesn't resolve types
1221
	return this.methods;
1221
	return this.methods;
1222
}
1222
}
1223
1224
public FieldBinding[] unResolvedFields() {
1225
	return this.fields;
1226
}
1223
}
1227
}
(-)compiler/org/eclipse/jdt/internal/compiler/lookup/ParameterizedTypeBinding.java (+4 lines)
Lines 1115-1118 Link Here
1115
		}
1115
		}
1116
		return Binding.NO_TYPE_VARIABLES;
1116
		return Binding.NO_TYPE_VARIABLES;
1117
	}
1117
	}
1118
	
1119
	public FieldBinding[] unResolvedFields() {
1120
		return this.fields;
1121
	}
1118
}
1122
}
(-)compiler/org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding.java (+4 lines)
Lines 1376-1379 Link Here
1376
MethodBinding[] unResolvedMethods() { // for the MethodVerifier so it doesn't resolve types
1376
MethodBinding[] unResolvedMethods() { // for the MethodVerifier so it doesn't resolve types
1377
	return methods();
1377
	return methods();
1378
}
1378
}
1379
1380
public FieldBinding[] unResolvedFields() {
1381
	return Binding.NO_FIELDS;
1382
}
1379
}
1383
}

Return to bug 332359