[Modify] Remove them

This commit is contained in:
sta 2021-04-18 16:23:04 +09:00
parent 28e5c28f8e
commit d1c3b6c9a2

View File

@ -64,8 +64,6 @@ namespace WebSocketSharp.Net
private AuthenticationSchemes _authSchemes;
private Func<HttpListenerRequest, AuthenticationSchemes> _authSchemeSelector;
private string _certFolderPath;
private Dictionary<HttpConnection, HttpConnection> _connections;
private object _connectionsSync;
private Queue<HttpListenerContext> _contextQueue;
private object _contextQueueSync;
private LinkedList<HttpListenerContext> _contextRegistry;
@ -103,9 +101,6 @@ namespace WebSocketSharp.Net
{
_authSchemes = AuthenticationSchemes.Anonymous;
_connections = new Dictionary<HttpConnection, HttpConnection> ();
_connectionsSync = ((ICollection) _connections).SyncRoot;
_contextQueue = new Queue<HttpListenerContext> ();
_contextQueueSync = ((ICollection) _contextQueue).SyncRoot;