From aa8f460d81627f9ff6781dda29b4f8b5361ea7d6 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 31 Jul 2017 16:36:11 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/WebSocket.cs | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index dc69473e..5ad89def 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2074,40 +2074,6 @@ namespace WebSocketSharp #region Internal Methods - internal static bool CheckParametersForClose ( - ushort code, string reason, bool client, out string message - ) - { - message = null; - - if (!code.IsCloseStatusCode ()) { - message = "'code' is an invalid status code."; - return false; - } - - if (code == (ushort) CloseStatusCode.NoStatus && !reason.IsNullOrEmpty ()) { - message = "'code' cannot have a reason."; - return false; - } - - if (code == (ushort) CloseStatusCode.MandatoryExtension && !client) { - message = "'code' cannot be used by a server."; - return false; - } - - if (code == (ushort) CloseStatusCode.ServerError && client) { - message = "'code' cannot be used by a client."; - return false; - } - - if (!reason.IsNullOrEmpty () && reason.UTF8Encode ().Length > 123) { - message = "The size of 'reason' is greater than the allowable max size."; - return false; - } - - return true; - } - internal static bool CheckParametersForClose ( CloseStatusCode code, string reason, bool client, out string message )