From 9a9ae4852d5beb49f317518a574c311e067c03e1 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 29 Dec 2020 19:38:11 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/Net/HttpListenerContext.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/websocket-sharp/Net/HttpListenerContext.cs b/websocket-sharp/Net/HttpListenerContext.cs index 1b65d2fe..c8e71a9b 100644 --- a/websocket-sharp/Net/HttpListenerContext.cs +++ b/websocket-sharp/Net/HttpListenerContext.cs @@ -240,16 +240,6 @@ namespace WebSocketSharp.Net return true; } - internal HttpListenerWebSocketContext GetWebSocketContext () - { - if (_websocketContext != null) - return _websocketContext; - - _websocketContext = new HttpListenerWebSocketContext (this, null); - - return _websocketContext; - } - internal HttpListenerWebSocketContext GetWebSocketContext (string protocol) { _websocketContext = new HttpListenerWebSocketContext (this, protocol);