diff --git a/websocket-sharp/Net/ChunkStream.cs b/websocket-sharp/Net/ChunkStream.cs index 8ca45eb8..b8240e3c 100644 --- a/websocket-sharp/Net/ChunkStream.cs +++ b/websocket-sharp/Net/ChunkStream.cs @@ -129,13 +129,6 @@ namespace WebSocketSharp.Net return nread; } - private static string removeChunkExtension (string value) - { - var idx = value.IndexOf (';'); - - return idx > -1 ? value.Substring (0, idx) : value; - } - private InputChunkState seekCrLf (byte[] buffer, ref int offset, int length) { if (!_sawCr) {