various performance tweaks and bugfixes

This commit is contained in:
Joel Dice
2007-08-19 13:45:51 -06:00
parent 747e7b0371
commit 59638543c7
13 changed files with 123 additions and 82 deletions

View File

@ -15,7 +15,7 @@ public class SystemClassLoader extends ClassLoader {
protected URL findResource(String name) {
if (resourceExists(name)) {
try {
return new URL("resource://" + name);
return new URL("resource:" + name);
} catch (MalformedURLException ignored) { }
}
return null;