From 80c58327faaa4873369f6bb949e62792c2f708e0 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Wed, 15 Aug 2007 21:34:53 +0000
Subject: [PATCH] This commit is a step toward getting OpenDS internationalized. There are still issues to be resolved before we can declare that we are internationalized but this commit covers the bulk of changes needed at this time.
---
opends/src/quicksetup/org/opends/quicksetup/QuickSetupCli.java | 30 ------------------------------
1 files changed, 0 insertions(+), 30 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/QuickSetupCli.java b/opends/src/quicksetup/org/opends/quicksetup/QuickSetupCli.java
index d7caab3..3cddaaa 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/QuickSetupCli.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/QuickSetupCli.java
@@ -33,7 +33,6 @@
import org.opends.quicksetup.ApplicationReturnCode.ReturnCode;
import org.opends.quicksetup.event.ProgressUpdateListener;
import org.opends.quicksetup.event.ProgressUpdateEvent;
-import org.opends.quicksetup.i18n.ResourceProvider;
import org.opends.server.util.StaticUtils;
/**
@@ -136,33 +135,4 @@
return returnValue;
}
- /**
- * The following three methods are just commodity methods to get localized
- * messages.
- * @param key String key
- * @return String message
- */
- protected static String getMsg(String key)
- {
- return org.opends.server.util.StaticUtils.wrapText(getI18n().getMsg(key),
- Utils.getCommandLineMaxLineWidth());
- }
-
- /**
- * The following three methods are just commodity methods to get localized
- * messages.
- * @param key String key
- * @param args String[] args
- * @return String message
- */
- protected static String getMsg(String key, String[] args)
- {
- return org.opends.server.util.StaticUtils.wrapText(
- getI18n().getMsg(key, args), Utils.getCommandLineMaxLineWidth());
- }
-
- private static ResourceProvider getI18n()
- {
- return ResourceProvider.getInstance();
- }
}
--
Gitblit v1.10.0