[Modify] Polish it

This commit is contained in:
sta 2019-08-10 22:25:44 +09:00
parent 909cb12717
commit f9ca46e840

View File

@ -150,7 +150,11 @@ namespace WebSocketSharp
internal int ExtendedPayloadLengthCount { internal int ExtendedPayloadLengthCount {
get { get {
return _payloadLength < 126 ? 0 : (_payloadLength == 126 ? 2 : 8); return _payloadLength < 126
? 0
: _payloadLength == 126
? 2
: 8;
} }
} }