From 039dc6a0daf199714c0accf1039a3be03853e368 Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 6 Aug 2017 16:02:02 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/WebSocket.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 60045250..7ca78b2d 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2074,17 +2074,6 @@ namespace WebSocketSharp #region Internal Methods - internal static string CheckSendParameters (Stream stream, int length) - { - return stream == null - ? "'stream' is null." - : !stream.CanRead - ? "'stream' cannot be read." - : length < 1 - ? "'length' is less than 1." - : null; - } - // As server internal void Close (HttpResponse response) {