From 535613fb5fd9a2e33c5d5717dd17a2afaf2139ff Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Fri, 27 Apr 2007 14:36:16 +0000
Subject: [PATCH] Addresses issues with GUI access to builds repository - Fixes a bug in which caused the connection problem dialog to fail to appear - Fixes a presentation problem with the HTML presented in the connection problem dialog - Properly associates the web proxy dialog with its parent and centers on the screen

---
 opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java b/opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java
index b540caf..b9967c9 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/upgrader/RemoteBuildManager.java
@@ -39,7 +39,6 @@
 import java.util.regex.Pattern;
 import java.util.regex.Matcher;
 import java.util.logging.Logger;
-import java.util.logging.Level;
 import java.io.*;
 import java.awt.*;
 
@@ -186,14 +185,6 @@
     String line;
     while (null != (line = reader.readLine())) {
       builder.append(line);
-
-      // FOR TESTING
-       try {
-          Thread.sleep(50);
-       } catch (InterruptedException e) {
-          LOG.log(Level.INFO, "error", e);
-       }
-
     }
     return builder.toString();
   }

--
Gitblit v1.10.0