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

Dieser Commit ist enthalten in:
Wizjany 2011-09-18 18:51:03 -04:00
Ursprung dd358bc982
Commit 1a6bc6f42c
2 geänderte Dateien mit 2 neuen und 5 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

@ -585,8 +585,9 @@ public class SelectionCommands {
LocalSession session, LocalPlayer player, EditSession editSession)
throws WorldEditException {
if (args.length() == 0) {
if (args.argsLength() == 0) {
session.getRegionSelector(player.getWorld()).clear();
return;
}
String typeName = args.getString(0);
if (typeName.equalsIgnoreCase("cuboid")) {