Remove printStackTrace

This commit is contained in:
Vankka 2022-04-14 10:12:33 +03:00
parent 6944cf2579
commit 1298a5039b
No known key found for this signature in database
GPG Key ID: 6E50CB7A29B96AD0

View File

@ -307,7 +307,6 @@ public class DiscordAPIImpl implements DiscordAPI {
try {
return mapExceptions(futureSupplier.get());
} catch (Throwable t) {
t.printStackTrace();
CompletableFuture<T> future = new CompletableFuture<>();
future.completeExceptionally(t);
return future;