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

kenneth_suter
08.15.2007 3d8214539ebc6afc6f948f60a8010d3de8c31a0d
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/Application.java
@@ -573,13 +573,13 @@
  /**
   * Makes available a <code>UserInteraction</code> class that can be used
   * by the application to interact with the user.  If the user has requested
   * a noninteractive session this method returns null.
   * a silent session this method returns null.
   * @return UserInteraction object
   */
  protected UserInteraction userInteraction() {
    // Note:  overridden in GuiApplication
    UserInteraction ui = null;
    if (!getUserData().isNoninteractive()) {
    if (!getUserData().isSilent()) {
      ui = new CliUserInteraction();
    }
    return ui;