Remove MVCommandHandler, we're finally free of it!

This commit is contained in:
Eric Stokes 2011-06-26 09:31:00 -06:00
parent be8ff3ad6d
commit 4edecaaf6f
2 changed files with 0 additions and 15 deletions

View File

@ -1,14 +0,0 @@
package com.onarandombox.MultiverseCore;
import org.bukkit.command.CommandSender;
public abstract class MVCommandHandler {
protected final MultiverseCore plugin;
public MVCommandHandler(MultiverseCore plugin) {
this.plugin = plugin;
}
public abstract boolean perform(CommandSender sender, String[] args);
}

View File

@ -63,7 +63,6 @@ public class MultiverseCore extends JavaPlugin {
private boolean debug;
// Setup our Map for our Commands using the CommandHandler.
private Map<String, MVCommandHandler> commands = new HashMap<String, MVCommandHandler>();
private CommandManager commandManager = new CommandManager();
private final String tag = "[Multiverse-Core]";