[Modify] Polish it

master
sta 5 years ago
parent eacf404f6c
commit 2880ab2e15

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

Loading…
Cancel
Save