From f54aeb79b0f90d550c8cdcac5bfc22d4fc4579ce Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 12 Apr 2007 21:17:33 +0000
Subject: [PATCH] - The upgrader now contains a small companion program BuildExtractor that is run prior to Upgrader that extacts the user specified build file.  This is done to allow upgrader to run from the new builds bits as opposed to the current build's bits.

---
 opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java b/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
index 28672c7..38c4e87 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java
@@ -374,11 +374,10 @@
       throws QuickSetupException {
     ZipExtractor extractor =
             new ZipExtractor(is, minRatio, maxRatio,
-            getUserData().getServerLocation(),
             Utils.getNumberZipEntries(),
             getZipFileName(),
             this);
-    extractor.extract();
+    extractor.extract(getUserData().getServerLocation());
   }
 
   /**

--
Gitblit v1.10.0