[Modify] Polish it

This commit is contained in:
sta 2021-03-02 19:34:33 +09:00
parent 4b1c10be3d
commit 0ffec334bb

View File

@ -370,9 +370,12 @@ namespace WebSocketSharp.Net
_chunks.Clear ();
}
internal int WriteAndReadBack (byte[] buffer, int offset, int writeCount, int readCount)
internal int WriteAndReadBack (
byte[] buffer, int offset, int writeCount, int readCount
)
{
Write (buffer, offset, writeCount);
return Read (buffer, offset, readCount);
}