Ver código fonte

Don't need this anymore.

GJ 11 anos atrás
pai
commit
f71b302f6f
1 arquivos alterados com 0 adições e 10 exclusões
  1. 0 10
      src/main/java/com/gmail/nossr50/util/StringUtils.java

+ 0 - 10
src/main/java/com/gmail/nossr50/util/StringUtils.java

@@ -14,16 +14,6 @@ public class StringUtils {
         return target.substring(0, 1).toUpperCase() + target.substring(1).toLowerCase();
     }
 
-    /**
-     * Gets a nicely formatted string version of an item name from a given item ID.
-     *
-     * @param itemID The ID of the item to convert to string.
-     * @return the nicely formatted string
-     */
-    public static String getPrettyItemString(int itemID) {
-        return createPrettyEnumString(Material.getMaterial(itemID).toString());
-    }
-
     public static String getPrettyItemString(Material material) {
         return createPrettyEnumString(material.toString());
     }