[Modify] Polish it

master
sta 5 years ago
parent 2880ab2e15
commit 4f64885b91

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

Loading…
Cancel
Save