From 66ad41503e32e26e11405b497a9592d98e2d05a0 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 29 Aug 2007 17:54:56 +0000
Subject: [PATCH] Move the no option constant definition to ToolConstants. Refactor some code and put it in CliApplicationHelper. Fix some minor bugs in the output of the command-lines.
---
opends/src/quicksetup/org/opends/quicksetup/Launcher.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/Launcher.java b/opends/src/quicksetup/org/opends/quicksetup/Launcher.java
index 6d9602d..d46f1c0 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Launcher.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Launcher.java
@@ -247,7 +247,7 @@
*/
protected int launchCli(CliApplication cliApp)
{
- System.setProperty("org.opends.quicksetup.cli", "true");
+ System.setProperty(Constants.CLI_JAVA_PROPERTY, "true");
QuickSetupCli cli = new QuickSetupCli(cliApp, this);
ApplicationReturnCode.ReturnCode returnValue = cli.run();
if (returnValue.equals(ApplicationReturnCode.ReturnCode.USER_DATA_ERROR))
--
Gitblit v1.10.0