Remove junk print code, cleanup parseAllQuotedStrings a bit

This commit is contained in:
Eric Stokes 2011-06-03 14:25:20 -04:00
parent 1f3a325bc9
commit 04a76b1eb2
1 changed files with 2 additions and 10 deletions

View File

@ -95,19 +95,11 @@ public class CommandManager {
}
// If the string was ended but had an open quote...
if(start != -1) {
//... then we want to close that quote and make that one arg.
newArgs.add(parseQuotedString(args, start, args.length));
}
String[] results = newArgs.toArray(new String[newArgs.size()]);
String msg = "Here's what I have boss: [";
if (results != null) {
for (String s : results) {
msg += s + ", ";
}
msg += "]";
this.sender.sendMessage(msg);
}
return results;
return newArgs.toArray(new String[newArgs.size()]);
}
/**