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

This reverts commit b4e04204a9.
This commit is contained in:
Andrew Steinborn
2023-03-16 02:14:22 -04:00
committed by GitHub
parent b4e04204a9
commit 15cce53adf

View File

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