Version 2.0.0: update sources
[jvcard.git] / src / com / googlecode / lanterna / bundle / LocalizedUIBundle.java
diff --git a/src/com/googlecode/lanterna/bundle/LocalizedUIBundle.java b/src/com/googlecode/lanterna/bundle/LocalizedUIBundle.java
deleted file mode 100644 (file)
index a1021af..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.googlecode.lanterna.bundle;
-
-import java.util.Locale;
-
-/**
- * This class permits to get easily localized strings about the UI.
- * @author silveryocha
- */
-public class LocalizedUIBundle extends BundleLocator {
-
-    private static final LocalizedUIBundle MY_BUNDLE = new LocalizedUIBundle("multilang.lanterna-ui");
-
-    public static String get(String key, String... parameters) {
-        return get(Locale.getDefault(), key, parameters);
-    }
-
-    public static String get(Locale locale, String key, String... parameters) {
-        return MY_BUNDLE.getBundleKeyValue(locale, key, (Object[])parameters);
-    }
-
-    private LocalizedUIBundle(final String bundleName) {
-        super(bundleName);
-    }
-}