From ee3642c86959b44af3ff0e9fde9950a966527596 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Tue, 07 Aug 2007 22:32:50 +0000
Subject: [PATCH] The following modifications have the following goals:
---
opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java b/opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java
index 52b9983..536ca94 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java
@@ -344,7 +344,7 @@
* @param key String key
* @return String message
*/
- protected static String getMsg(String key)
+ protected String getMsg(String key)
{
return org.opends.server.util.StaticUtils.wrapText(getI18n().getMsg(key),
Utils.getCommandLineMaxLineWidth());
@@ -357,7 +357,7 @@
* @param args String[] args
* @return String message
*/
- protected static String getMsg(String key, String... args)
+ protected String getMsg(String key, String... args)
{
return org.opends.server.util.StaticUtils.wrapText(
getI18n().getMsg(key, args), Utils.getCommandLineMaxLineWidth());
@@ -367,7 +367,7 @@
* Gets the resource provider instance.
* @return ResourceProvider instance
*/
- protected static ResourceProvider getI18n()
+ protected ResourceProvider getI18n()
{
return ResourceProvider.getInstance();
}
--
Gitblit v1.10.0