🐛 Remove rogue print statement

This commit is contained in:
Alexander Söderberg 2020-10-08 11:57:13 +02:00
parent c4abf4eca3
commit aa572e3533
No known key found for this signature in database
GPG key ID: FACEA5B0F4C1BF80

View file

@ -170,8 +170,6 @@ public class CompoundArgument<T extends Tuple, C, O> extends CommandArgument<C,
in the context, so we can then extract that number and forward the request in the context, so we can then extract that number and forward the request
*/ */
final int argument = commandContext.getOrDefault("__parsing_argument__", 1) - 1; final int argument = commandContext.getOrDefault("__parsing_argument__", 1) - 1;
System.out.printf("Compound argument suggestions: %d | %s\n", argument, input);
//noinspection all //noinspection all
return ((ArgumentParser<C, ?>) this.parsers[argument]).suggestions(commandContext, input); return ((ArgumentParser<C, ?>) this.parsers[argument]).suggestions(commandContext, input);
} }