diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index b868850f..00745ddc 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -177,14 +177,6 @@ namespace WebSocketSharp return buff.ToArray (); } - internal static void Close ( - this HttpListenerResponse response, HttpStatusCode code - ) - { - response.StatusCode = (int) code; - response.OutputStream.Close (); - } - internal static byte[] Compress (this byte[] data, CompressionMethod method) { return method == CompressionMethod.Deflate