[Modify] Polish it

This commit is contained in:
sta 2021-04-04 22:46:20 +09:00
parent c49c58d41a
commit 8b6f5cf2b7

View File

@ -509,10 +509,11 @@ namespace WebSocketSharp.Net
if (_waitQueue.Count == 0)
return null;
var ares = _waitQueue[0];
var ret = _waitQueue[0];
_waitQueue.RemoveAt (0);
return ares;
return ret;
}
private HttpListenerContext getContextFromQueue ()