From 3abb46dd58d805771a17e9d942914dd160367adb Mon Sep 17 00:00:00 2001 From: kappa1 Date: Mon, 12 Oct 2009 11:56:46 +0000 Subject: [PATCH] Stop AppletLoader on download failure, instead of displaying error and continuing download of files. --- src/java/org/lwjgl/util/applet/AppletLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/lwjgl/util/applet/AppletLoader.java b/src/java/org/lwjgl/util/applet/AppletLoader.java index 21711a65..8415bb63 100644 --- a/src/java/org/lwjgl/util/applet/AppletLoader.java +++ b/src/java/org/lwjgl/util/applet/AppletLoader.java @@ -874,7 +874,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub { } else { // retry attempts exhasted, download failed - fatalErrorOccured("failed to download " + currentFile, null); + throw new Exception("failed to download " + currentFile); } } }