From aa1b31b439cda82beee14821a622557b2102660b Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 27 Feb 2021 21:28:10 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/ChunkStream.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/websocket-sharp/Net/ChunkStream.cs b/websocket-sharp/Net/ChunkStream.cs index c4f11ad1..772d7a36 100644 --- a/websocket-sharp/Net/ChunkStream.cs +++ b/websocket-sharp/Net/ChunkStream.cs @@ -286,7 +286,9 @@ namespace WebSocketSharp.Net private static void throwProtocolViolation (string message) { - throw new WebException (message, null, WebExceptionStatus.ServerProtocolViolation, null); + throw new WebException ( + message, null, WebExceptionStatus.ServerProtocolViolation, null + ); } private void write (byte[] buffer, ref int offset, int length)