From 40220960f5286d82b43f31192594488fb505ee09 Mon Sep 17 00:00:00 2001 From: snowleo Date: Wed, 30 Nov 2011 23:51:41 +0100 Subject: We don't need that anymore. --- .../essentials/permissions/Commandmanudel.java | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java') diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java deleted file mode 100644 index 72c8fc2af..000000000 --- a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.earth2me.essentials.permissions; - -import com.earth2me.essentials.commands.EssentialsCommand; -import com.earth2me.essentials.commands.NotEnoughArgumentsException; -import org.bukkit.Server; -import org.bukkit.command.CommandSender; - - -public class Commandmanudel extends EssentialsCommand -{ - public Commandmanudel() - { - super("manudel"); - } - - @Override - protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception - { - if (args.length < 1) - { - throw new NotEnoughArgumentsException(); - } - final String player = args[0]; - String command = "permissions "+player+" delete"; - sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead."); - ess.getServer().dispatchCommand(sender, command); - } - - -} -- cgit v1.2.3