From 30c61f6cdc2906798f04ed4111bca50c92ef5404 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Wed, 25 Apr 2007 21:48:40 +0000
Subject: [PATCH] - Addresses issues that was forcing OpenDS.jar to be downloaded during WebStart version of Upgrade. Upgrade now uses the WebStartDownloader to load jars in the background - Fixes UI timing issues with build information being downloaded in a different thread - Introduces a loading panel that is swapped in while panels are in begin draw state to make the UI more responsive when initialization takes a long time
---
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserData.java | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserData.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserData.java
index 35834cd..5becaa4 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserData.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/UserData.java
@@ -28,7 +28,6 @@
package org.opends.quicksetup;
import org.opends.quicksetup.util.Utils;
-import org.opends.server.util.SetupUtils;
/**
* Represents user specified input data to an application.
@@ -303,7 +302,7 @@
for (int i=0;i<65000 && (defaultJMXPort == -1);i+=1000)
{
- int port = i + SetupUtils.getDefaultJMXPort();
+ int port = i + org.opends.server.util.SetupUtils.getDefaultJMXPort();
boolean isForbidden = false;
if (forbiddenPorts != null)
{
--
Gitblit v1.10.0