From b95ada27a8ac78d5e07d19daa517e3a8dc6dec64 Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 2 Feb 2020 17:30:03 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/ResponseStream.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocket-sharp/Net/ResponseStream.cs b/websocket-sharp/Net/ResponseStream.cs index 910e4aea..a776b60d 100644 --- a/websocket-sharp/Net/ResponseStream.cs +++ b/websocket-sharp/Net/ResponseStream.cs @@ -64,7 +64,7 @@ namespace WebSocketSharp.Net static ResponseStream () { - _crlf = new byte[] { 13, 10 }; + _crlf = new byte[] { 13, 10 }; // "\r\n" _lastChunk = new byte[] { 48, 13, 10, 13, 10 }; // "0\r\n\r\n" }