Fixed AIOOBE and a missing return, removed an unused and ambiguous method from CommandContext.

This commit is contained in:
Wizjany
2011-09-18 18:51:03 -04:00
parent dd358bc982
commit 1a6bc6f42c
2 changed files with 2 additions and 5 deletions

View File

@ -221,10 +221,6 @@ public class CommandContext {
return Double.parseDouble(value);
}
public int length() {
return args.length;
}
public int argsLength() {
return args.length - 1;
}