From 61b4a0284bebd81b0ab4a700d00f9044f97ec9fe Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Mon, 20 Nov 2006 19:40:49 +0000
Subject: [PATCH]
---
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java | 15 +++------------
1 files changed, 3 insertions(+), 12 deletions(-)
diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
index 490e944..cfd350f 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
@@ -292,20 +292,11 @@
if (in == null)
{
- // Retry once
- loader.start(true);
- waitForLoader(maxRatio);
- in =
- Installer.class.getClassLoader()
- .getResourceAsStream(getZipFileName());
-
- if (in == null)
- {
- throw new InstallException(InstallException.Type.DOWNLOAD_ERROR,
- getMsg("error-zipinputstreamnull"), null);
- }
+ throw new InstallException(InstallException.Type.DOWNLOAD_ERROR,
+ getMsg("error-zipinputstreamnull"), null);
}
+
notifyListeners(getHtmlDone());
return in;
}
--
Gitblit v1.10.0