From d924ed53ec81ea1891efaf1611d7559f65c3143b Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 13 Jun 2020 17:59:21 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/Net/WebHeaderCollection.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/websocket-sharp/Net/WebHeaderCollection.cs b/websocket-sharp/Net/WebHeaderCollection.cs index bd472e6c..5af8fd5a 100644 --- a/websocket-sharp/Net/WebHeaderCollection.cs +++ b/websocket-sharp/Net/WebHeaderCollection.cs @@ -902,15 +902,6 @@ namespace WebSocketSharp.Net return value; } - private void doWithoutCheckingName ( - Action action, string name, string value - ) - { - checkRestricted (name); - value = checkValue (value); - action (name, value); - } - private static HttpHeaderInfo getHeaderInfo (string name) { var comparison = StringComparison.InvariantCultureIgnoreCase;