13
0
geforkt von Mirrors/Velocity

Revert "Handle exceptions in ConnectionRequestBuilderImpl#fireAndForget (#875)" (#978)

This reverts commit b4e04204a9.
Dieser Commit ist enthalten in:
Andrew Steinborn 2023-03-16 02:14:22 -04:00 committet von GitHub
Ursprung b4e04204a9
Commit 15cce53adf
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -1244,10 +1244,7 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player,
@Override
public void fireAndForget() {
connectWithIndication().exceptionally((ex) -> {
logger.error("Exception while connecting with indication", ex);
return null;
});
connectWithIndication();
}
}
}