]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Correction. Committed wrong patch earlier today.
authorAnthony Green <green@gcc.gnu.org>
Sat, 17 Sep 2005 04:20:26 +0000 (04:20 +0000)
committerAnthony Green <green@gcc.gnu.org>
Sat, 17 Sep 2005 04:20:26 +0000 (04:20 +0000)
From-SVN: r104367

libjava/java/net/URLClassLoader.java

index 2a6f87c4093bf8c0b8bed67ac3fcc5729c8463c3..dd947cb011533093e6fc77372e4c58b8e74c3303 100644 (file)
@@ -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)
        {