[Modify] Polish it

This commit is contained in:
sta 2020-07-23 19:34:11 +09:00
parent eacf404f6c
commit 2880ab2e15

View File

@ -53,8 +53,9 @@ namespace WebSocketSharp.Net
internal bool IsMultiValueInRequest { internal bool IsMultiValueInRequest {
get { get {
return (_headerType & HttpHeaderType.MultiValueInRequest) var headerType = _headerType & HttpHeaderType.MultiValueInRequest;
== HttpHeaderType.MultiValueInRequest;
return headerType == HttpHeaderType.MultiValueInRequest;
} }
} }