diff --git a/websocket-sharp/Net/HttpListener.cs b/websocket-sharp/Net/HttpListener.cs index b3799ac5..784e4c18 100644 --- a/websocket-sharp/Net/HttpListener.cs +++ b/websocket-sharp/Net/HttpListener.cs @@ -64,8 +64,6 @@ namespace WebSocketSharp.Net private AuthenticationSchemes _authSchemes; private Func _authSchemeSelector; private string _certFolderPath; - private Dictionary _connections; - private object _connectionsSync; private Queue _contextQueue; private object _contextQueueSync; private LinkedList _contextRegistry; @@ -103,9 +101,6 @@ namespace WebSocketSharp.Net { _authSchemes = AuthenticationSchemes.Anonymous; - _connections = new Dictionary (); - _connectionsSync = ((ICollection) _connections).SyncRoot; - _contextQueue = new Queue (); _contextQueueSync = ((ICollection) _contextQueue).SyncRoot;