From: <ka...@us...> - 2009-10-12 11:56:53
|
Revision: 3245 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3245&view=rev Author: kappa1 Date: 2009-10-12 11:56:46 +0000 (Mon, 12 Oct 2009) Log Message: ----------- Stop AppletLoader on download failure, instead of displaying error and continuing download of files. Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java Modified: trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-10-08 00:03:55 UTC (rev 3244) +++ trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-10-12 11:56:46 UTC (rev 3245) @@ -874,7 +874,7 @@ } else { // retry attempts exhasted, download failed - fatalErrorOccured("failed to download " + currentFile, null); + throw new Exception("failed to download " + currentFile); } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |