From 5d0ceeba98f7bfd2cf17a1f2970e4c8be3130388 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Sun, 26 Aug 2007 17:43:55 +0000
Subject: [PATCH] Fix for issues 2104 and 2162.
---
opends/src/quicksetup/org/opends/quicksetup/CliUserInteraction.java | 13 ++-----------
1 files changed, 2 insertions(+), 11 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/CliUserInteraction.java b/opends/src/quicksetup/org/opends/quicksetup/CliUserInteraction.java
index 544b0a0..7a4ae7c 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/CliUserInteraction.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/CliUserInteraction.java
@@ -43,18 +43,11 @@
*/
public class CliUserInteraction extends CliApplicationHelper
implements UserInteraction {
-
- private PrintStream out;
- private PrintStream err;
- private InputStream in;
-
/**
* Creates an instance that will use standard streams for interaction.
*/
public CliUserInteraction() {
- this.out = System.out;
- this.err = System.err;
- this.in = System.in;
+ super(System.out, System.err, System.in);
}
/**
@@ -64,9 +57,7 @@
* @param in InputStream from which information will be read
*/
public CliUserInteraction(PrintStream out, PrintStream err, InputStream in) {
- this.out = out;
- this.err = err;
- this.in = in;
+ super(out, err, in);
}
/**
--
Gitblit v1.10.0