Commit a49701f9 by Anthony Green

Correction. Committed wrong patch earlier today.

From-SVN: r104367
parent ee2400e3
...@@ -614,7 +614,7 @@ public class URLClassLoader extends SecureClassLoader ...@@ -614,7 +614,7 @@ public class URLClassLoader extends SecureClassLoader
{ {
File file = new File(dir, name).getCanonicalFile(); File file = new File(dir, name).getCanonicalFile();
if (file.exists() && !file.isDirectory()) if (file.exists() && !file.isDirectory())
return new FileResource(this, file.path(), file); return new FileResource(this, file.getPath(), file);
} }
catch (IOException e) catch (IOException e)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment