Remove semaphores.

This commit is contained in:
Ray Koopa 2020-07-14 21:11:05 +02:00
parent 730b14cdfa
commit 2ea6af0324

View File

@ -27,8 +27,6 @@ namespace Syroot.Worms.Worms2.GameServer
private readonly PipeReader _reader;
private readonly PipeWriter _writer;
private readonly SemaphoreSlim _recvLock = new SemaphoreSlim(1, 1);
private readonly SemaphoreSlim _sendLock = new SemaphoreSlim(1, 1);
// ---- CONSTRUCTORS & DESTRUCTOR ------------------------------------------------------------------------------