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

(-)compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java (-1 / +1 lines)
Lines 961-967 Link Here
961
		return null; // will not get here since the above error aborts the compilation
961
		return null; // will not get here since the above error aborts the compilation
962
	} else if (!isParameterized) {
962
	} else if (!isParameterized) {
963
	    // check raw type, only for resolved types
963
	    // check raw type, only for resolved types
964
        binding = (ReferenceBinding)convertToRawType(binding);
964
        binding = (ReferenceBinding)convertUnresolvedBinaryToRawType(binding);
965
	}
965
	}
966
	return binding;
966
	return binding;
967
}
967
}

Return to bug 140569