From: Anthony Green Date: Sat, 17 Sep 2005 04:20:26 +0000 (+0000) Subject: Correction. Committed wrong patch earlier today. X-Git-Tag: misc/cutover-cvs2svn~585 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a49701f9e09698e2bf35bb266837c796c8de066a;p=thirdparty%2Fgcc.git Correction. Committed wrong patch earlier today. From-SVN: r104367 --- diff --git a/libjava/java/net/URLClassLoader.java b/libjava/java/net/URLClassLoader.java index 2a6f87c4093b..dd947cb01153 100644 --- a/libjava/java/net/URLClassLoader.java +++ b/libjava/java/net/URLClassLoader.java @@ -614,7 +614,7 @@ public class URLClassLoader extends SecureClassLoader { File file = new File(dir, name).getCanonicalFile(); if (file.exists() && !file.isDirectory()) - return new FileResource(this, file.path(), file); + return new FileResource(this, file.getPath(), file); } catch (IOException e) {