From 91adf4261182c80ba2778bc7b794ff6ace2c1b6a Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 29 Jan 2015 15:50:13 +0900 Subject: [PATCH] Removed the IsSendable methods --- websocket-sharp/Ext.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 79ab0b86..d2f6b405 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -635,16 +635,6 @@ namespace WebSocketSharp code == CloseStatusCode.TlsHandshakeFailure; } - internal static bool IsSendable (this ushort code) - { - return !code.IsReserved () || code.IsNoStatusCode (); - } - - internal static bool IsSendable (this CloseStatusCode code) - { - return !code.IsReserved () || code.IsNoStatusCode (); - } - internal static bool IsText (this string value) { var len = value.Length;