diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index f311db51..d2c06441 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1231,7 +1231,9 @@ namespace WebSocketSharp return Encoding.UTF8.GetBytes (s); } - internal static void WriteBytes (this Stream stream, byte[] bytes, int bufferLength) + internal static void WriteBytes ( + this Stream stream, byte[] bytes, int bufferLength + ) { using (var input = new MemoryStream (bytes)) input.CopyTo (stream, bufferLength);