Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.ui / src / net / sourceforge / phpdt / internal / debug / ui / PHPDebugUiMessages.java
index dc23fa0..28f1861 100644 (file)
@@ -1,15 +1,19 @@
 package net.sourceforge.phpdt.internal.debug.ui;
 
-import java.text.MessageFormat;
+//import java.text.MessageFormat;
 import java.util.MissingResourceException;
 import java.util.ResourceBundle;
 
 public class PHPDebugUiMessages {
 
-       private static final String BUNDLE_NAME = PHPDebugUiMessages.class.getName();
-       private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
+       private static final String BUNDLE_NAME = PHPDebugUiMessages.class
+                       .getName();
 
-       private PHPDebugUiMessages() {}
+       private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
+                       .getBundle(BUNDLE_NAME);
+
+       private PHPDebugUiMessages() {
+       }
 
        public static String getString(String key) {
                try {
@@ -19,11 +23,11 @@ public class PHPDebugUiMessages {
                }
        }
 
-       public static String getFormattedString(String key, Object arg) {
-               return MessageFormat.format(getString(key), new Object[] { arg });
-       }
+//     public static String getFormattedString(String key, Object arg) {
+//             return MessageFormat.format(getString(key), new Object[] { arg });
+//     }
 
-       public static String getFormattedString(String key, Object[] args) {
-               return MessageFormat.format(getString(key), args);
-       }
+//     public static String getFormattedString(String key, Object[] args) {
+//             return MessageFormat.format(getString(key), args);
+//     }
 }
\ No newline at end of file