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

kenneth_suter
23.57.2007 67a4b575be3f35220d91a15db0ba1923d25268c0
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/Application.java
@@ -596,13 +596,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 silent session this method returns null.
   * a quiet session this method returns null.
   * @return UserInteraction object
   */
  public UserInteraction userInteraction() {
    // Note:  overridden in GuiApplication
    UserInteraction ui = null;
    if (!getUserData().isSilent()) {
    if (!getUserData().isQuiet()) {
      ui = new CliUserInteraction();
    }
    return ui;