Fix some javadoc and imports.
This commit is contained in:
parent
98e2032182
commit
4a61a1f30e
@ -14,7 +14,7 @@
|
||||
*/
|
||||
package com.gmail.bleedobsidian.itemcase;
|
||||
|
||||
import com.gmail.bleedobsidian.itemcase.commands.CreateCommand;
|
||||
import com.gmail.bleedobsidian.itemcase.commands.ModifyCommand;
|
||||
import com.gmail.bleedobsidian.itemcase.commands.DestroyCommand;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandExecutor;
|
||||
@ -46,7 +46,7 @@ public final class CommandHandler implements CommandExecutor {
|
||||
switch(args[0]) {
|
||||
|
||||
case "create":
|
||||
new CreateCommand().execute(sender, label, args);
|
||||
new ModifyCommand().execute(sender, label, args);
|
||||
break;
|
||||
case "destroy":
|
||||
new DestroyCommand().execute(sender, label, args);
|
||||
|
@ -24,7 +24,7 @@ import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
/**
|
||||
* A command handler for the 'create' command.
|
||||
* A command handler for the 'destroy' command.
|
||||
*
|
||||
* @author Jesse Prescott (BleedObsidian)
|
||||
*/
|
||||
|
@ -32,7 +32,6 @@ import org.bukkit.Bukkit;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.OfflinePlayer;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.configuration.ConfigurationSection;
|
||||
import org.bukkit.inventory.Inventory;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user