[Modify] Polish it

This commit is contained in:
sta 2020-07-23 19:36:34 +09:00
parent 2880ab2e15
commit 4f64885b91

View File

@ -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;
}
}