Remove debug message

This commit is contained in:
Alexander Söderberg 2020-09-18 22:45:11 +02:00
parent c208204fa3
commit 36f680cff0
No known key found for this signature in database
GPG key ID: C0207FF7EA146678

View file

@ -235,7 +235,6 @@ public final class CloudBrigadierManager<C, S> {
if (argumentTypeSupplier != null) { if (argumentTypeSupplier != null) {
return new Pair<>(argumentTypeSupplier.get(), true); return new Pair<>(argumentTypeSupplier.get(), true);
} }
System.err.printf("Found not native mapping for '%s'\n", argument.getValueType().getCanonicalName());
return new Pair<>(StringArgumentType.string(), false); return new Pair<>(StringArgumentType.string(), false);
} }