From e504ed0e4d9425f5c821687e8e5d0a7822c45730 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 23 Aug 2007 21:57:46 +0000
Subject: [PATCH] standardized the tools various option forms for suppressing output to -Q/--quiet
---
opends/src/guitools/org/opends/guitools/uninstaller/UninstallCliHelper.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/uninstaller/UninstallCliHelper.java b/opends/src/guitools/org/opends/guitools/uninstaller/UninstallCliHelper.java
index 6ed747f..f4081b8 100644
--- a/opends/src/guitools/org/opends/guitools/uninstaller/UninstallCliHelper.java
+++ b/opends/src/guitools/org/opends/guitools/uninstaller/UninstallCliHelper.java
@@ -97,7 +97,7 @@
UninstallUserData userData = new UninstallUserData();
boolean isInteractive;
- boolean isSilent;
+ boolean isQuiet;
boolean isCancelled = false;
/* Step 1: analyze the arguments.
@@ -113,9 +113,9 @@
isInteractive = args.isInteractive();
- isSilent = args.isSilent();
+ isQuiet = args.isQuiet();
- userData.setSilent(isSilent);
+ userData.setQuiet(isQuiet);
userData.setForceOnError(args.isForceOnError());
userData.setTrustManager(args.getTrustManager());
@@ -388,7 +388,7 @@
* @return <CODE>true</CODE> if the user wants to continue with uninstall and
* <CODE>false</CODE> otherwise.
* @throws UserDataException if there is a problem with the data
- * provided by the user (in the particular case where we are on silent
+ * provided by the user (in the particular case where we are on quiet
* uninstall and some data is missing or not valid).
*/
private boolean checkServerState(UninstallUserData userData,
@@ -450,7 +450,7 @@
{
if (confirmToUpdateRemoteAndStart())
{
- boolean startWorked = startServer(userData.isSilent());
+ boolean startWorked = startServer(userData.isQuiet());
// Ask for authentication if needed, etc.
if (startWorked)
{
@@ -489,7 +489,7 @@
}
else
{
- boolean startWorked = startServer(userData.isSilent());
+ boolean startWorked = startServer(userData.isQuiet());
// Ask for authentication if needed, etc.
if (startWorked)
{
--
Gitblit v1.10.0