[Modify] Remove it

This commit is contained in:
sta 2017-08-06 16:02:02 +09:00
parent 0c997f3956
commit 039dc6a0da

View File

@ -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)
{