From 353abd0d03f5d1d48b8a35287f0b06db2f41a8c4 Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 3 May 2015 14:49:39 +0900 Subject: [PATCH] Removed the Ext.IsNoStatus methods --- websocket-sharp/Ext.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 1b51729e..6d7806cf 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -577,16 +577,6 @@ namespace WebSocketSharp return value.StartsWith (method.ToExtensionString ()); } -// internal static bool IsNoStatus (this ushort code) -// { -// return code == (ushort) CloseStatusCode.NoStatus; -// } -// -// internal static bool IsNoStatus (this CloseStatusCode code) -// { -// return code == CloseStatusCode.NoStatus; -// } - internal static bool IsPortNumber (this int value) { return value > 0 && value < 65536;