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

(-)model/org/eclipse/jdt/internal/core/JavaModel.java (+3 lines)
Lines 351-356 Link Here
351
	if (!path.isAbsolute()) return null; 
351
	if (!path.isAbsolute()) return null; 
352
352
353
	// lookup - outside the container
353
	// lookup - outside the container
354
	return getTargetAsExternalFile(path, checkResourceExistence);	
355
}
356
private synchronized static Object getTargetAsExternalFile(IPath path, boolean checkResourceExistence) {
354
	File externalFile = new File(path.toOSString());
357
	File externalFile = new File(path.toOSString());
355
	if (!checkResourceExistence) {
358
	if (!checkResourceExistence) {
356
		return externalFile;
359
		return externalFile;

Return to bug 162517