[Modify] Remove it

This commit is contained in:
sta 2016-12-08 13:58:54 +09:00
parent d99c6f56ee
commit 4f84497733

View File

@ -1572,18 +1572,6 @@ namespace WebSocketSharp
_context = null;
}
private bool send (byte[] frameAsBytes)
{
lock (_forState) {
if (_readyState != WebSocketState.Open) {
_logger.Error ("The state of the connection has been changed.");
return false;
}
return sendBytes (frameAsBytes);
}
}
private bool send (Opcode opcode, Stream stream)
{
lock (_forSend) {