From 179832f1486eec5991ea4edc584b2ca962c95e90 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Mon, 27 Aug 2007 08:37:44 +0000
Subject: [PATCH] Fix for issue 2167.
---
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/webstart/WebStartInstaller.java | 6 ++----
1 files changed, 2 insertions(+), 4 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 1869bc6..b9b2d38 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
@@ -107,10 +107,8 @@
PrintStream origOut = System.out;
try
{
- PrintStream err = new ErrorPrintStream();
- PrintStream out = new OutputPrintStream();
- System.setErr(err);
- System.setOut(out);
+ System.setErr(getApplicationErrorStream());
+ System.setOut(getApplicationOutputStream());
setCurrentProgressStep(InstallProgressStep.DOWNLOADING);
--
Gitblit v1.10.0