removed repaint() which had no effect.

This commit is contained in:
kappa1 2008-05-11 14:41:46 +00:00
parent c11fa3f1ee
commit fab73d2e8f
1 changed files with 1 additions and 2 deletions

View File

@ -322,7 +322,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
} }
/** /**
* Retrieves the applet that has been loaded. Usefull for liveconnect. * Retrieves the applet that has been loaded. Useful for liveconnect.
*/ */
public Applet getApplet() { public Applet getApplet() {
return lwjglApplet; return lwjglApplet;
@ -615,7 +615,6 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
fatalErrorOccured(e.getMessage()); fatalErrorOccured(e.getMessage());
} finally { } finally {
loaderThread = null; loaderThread = null;
repaint();
} }
} }