From 426f6fff96db9c07683e5a27b8b745b3e13c29ff Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Fri, 08 Jun 2007 19:15:27 +0000
Subject: [PATCH] This commit address several related issues regarding the upgrader CLI:
---
opends/src/quicksetup/org/opends/quicksetup/Application.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/Application.java b/opends/src/quicksetup/org/opends/quicksetup/Application.java
index 4fa82af..9cb4682 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Application.java
+++ b/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;
--
Gitblit v1.10.0