From 0507167a197e7d43333b9d70f8161909535b976c Mon Sep 17 00:00:00 2001 From: okamosy Date: Sun, 21 Aug 2011 20:06:25 +0100 Subject: Removed commented-out code --- .../essentials/commands/Commandpowertool.java | 42 ---------------------- 1 file changed, 42 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandpowertool.java b/Essentials/src/com/earth2me/essentials/commands/Commandpowertool.java index c1450046a..bc1ccd801 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandpowertool.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandpowertool.java @@ -96,46 +96,4 @@ public class Commandpowertool extends EssentialsCommand charge(user); user.setPowertool(is, powertools); } - - private String appendPowerTool(User user, String command, ItemStack is, String itemName) throws Exception - { - command = command.substring(2); // Ignore the first 2 chars - /*String powertools = user.getPowertool(is); - if (powertools != null) - { - if (powertools.contains(command)) - { - throw new Exception((Util.format("powerToolAlreadySet", command, itemName))); - } - - StringBuilder newCommand = new StringBuilder(); - command = newCommand.append(powertools).append("|").append(command).toString(); - } -*/ - return command; - } - - private String removePowerTool(User user, String command, ItemStack is, String itemName) throws Exception - { - /* - String powertools = user.getPowertool(is); - if (!powertools.contains(command)) - { - throw new Exception((Util.format("powerToolNoSuchCommandAssigned", command, itemName))); - } - - command = powertools.replace(command, "").replace("||", "|"); - - // Trim off any leading/trailing '|' chars - if (command.startsWith("|")) - { - command = command.substring(1); - } - if (command.endsWith("|")) - { - command = command.substring(0, command.length() - 1); - } -*/ - return command; - } } -- cgit v1.2.3