AppletLoader - added small bit of missing code (doh), thx to arielsan for spotting it

This commit is contained in:
kappa1 2011-02-03 09:35:00 +00:00
parent 9e26e3ef59
commit 48650a6e02
1 changed files with 1 additions and 1 deletions

View File

@ -1560,7 +1560,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
// if image failed to load, try another method
if (url == null) {
Thread.currentThread().getContextClassLoader().getResource(s);
url = Thread.currentThread().getContextClassLoader().getResource(s);
}
Image image = super.getImage(url);