mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
26.43.2007 a9ba1c2545ef442f76928469a424a6521cfa4725
opendj-sdk/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);
  }
  /**