From 37cef1c7734b4eee2661bfe8b5887149585eb0e0 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 21 Mar 2020 21:57:21 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/WebHeaderCollection.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/websocket-sharp/Net/WebHeaderCollection.cs b/websocket-sharp/Net/WebHeaderCollection.cs index 3a0f2e54..ccd69de6 100644 --- a/websocket-sharp/Net/WebHeaderCollection.cs +++ b/websocket-sharp/Net/WebHeaderCollection.cs @@ -915,7 +915,9 @@ namespace WebSocketSharp.Net _state = response ? HttpHeaderType.Response : HttpHeaderType.Request; } - private void doWithoutCheckingName (Action action, string name, string value) + private void doWithoutCheckingName ( + Action action, string name, string value + ) { checkRestricted (name); action (name, checkValue (value));