Removed deprecated in comment

This commit is contained in:
boy0001
2015-08-07 13:18:14 +10:00
parent d779ca366d
commit 444e8b346e
3 changed files with 7 additions and 2 deletions

View File

@ -140,6 +140,9 @@ public abstract class Command<E extends CommandCaller> extends CommandManager {
}
final public CommandCategory getCategory() {
if (category == null) {
return CommandCategory.DEBUG;
}
return this.category;
}