From c4a1f72df425b3da615e700132b15c843fc460d6 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 18 Jul 2020 21:53:42 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/HttpHeaderInfo.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/websocket-sharp/Net/HttpHeaderInfo.cs b/websocket-sharp/Net/HttpHeaderInfo.cs index 717f8f46..b62205c4 100644 --- a/websocket-sharp/Net/HttpHeaderInfo.cs +++ b/websocket-sharp/Net/HttpHeaderInfo.cs @@ -53,7 +53,8 @@ namespace WebSocketSharp.Net internal bool IsMultiValueInRequest { get { - return (_type & HttpHeaderType.MultiValueInRequest) == HttpHeaderType.MultiValueInRequest; + return (_type & HttpHeaderType.MultiValueInRequest) + == HttpHeaderType.MultiValueInRequest; } }