summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandsudo.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandsudo.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandsudo.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandsudo.java b/Essentials/src/com/earth2me/essentials/commands/Commandsudo.java
index 54e18b159..95e1dd280 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandsudo.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandsudo.java
@@ -8,7 +8,6 @@ import java.util.logging.Level;
import java.util.logging.Logger;
import org.bukkit.Server;
import org.bukkit.command.PluginCommand;
-import org.bukkit.entity.Player;
public class Commandsudo extends EssentialsCommand
@@ -61,7 +60,7 @@ public class Commandsudo extends EssentialsCommand
public void run()
{
LOGGER.log(Level.INFO, String.format("[Sudo] %s issued server command: /%s %s", user.getName(), command, getFinalArg(arguments, 0)));
- execCommand.execute(user.getBase(), command, arguments);
+ execCommand.execute(user.getBase(), command, arguments);
}
});
}