Code cleanup
Fixed code style using CodeMaid.
This commit is contained in:
@@ -1,14 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace TestProtocol
|
||||
{
|
||||
public class Message
|
||||
{
|
||||
public Message(ProtocolOp op, byte[] data)
|
||||
public Message( ProtocolOp op, byte[] data )
|
||||
{
|
||||
this.Operation = op;
|
||||
this.Data = data;
|
||||
@@ -18,4 +14,4 @@ namespace TestProtocol
|
||||
|
||||
public byte[] Data { get; private set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user