A few minor consistency corrections.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-03 20:49:07 +00:00
parent d4a35c402c
commit c4e613065b
3 changed files with 7 additions and 11 deletions
+2 -5
View File
@@ -6,11 +6,8 @@ namespace EightBit
{
private byte port;
public PortEventArgs(byte value)
{
port = value;
}
public PortEventArgs(byte value) => port = value;
public byte Port { get { return port; } }
public byte Port => port;
}
}