Work my way through a bunch of the analysis suggestions.

Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2020-06-22 00:00:15 +01:00
parent db0e8c613f
commit cd4af67177
32 changed files with 297 additions and 292 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ namespace Fuse
{
private readonly List<byte> bytes = new List<byte>();
public ushort Address { get; private set; } = (ushort)EightBit.Mask.Mask16;
public ushort Address { get; private set; } = (ushort)EightBit.Mask.Sixteen;
public ReadOnlyCollection<byte> Bytes => this.bytes.AsReadOnly();
+2 -2
View File
@@ -27,9 +27,9 @@ namespace Fuse
public string Specifier { get; private set; }
public ushort Address { get; private set; } = (ushort)EightBit.Mask.Mask16;
public ushort Address { get; private set; } = (ushort)EightBit.Mask.Sixteen;
public byte Value { get; private set; } = (byte)EightBit.Mask.Mask8;
public byte Value { get; private set; } = (byte)EightBit.Mask.Eight;
public bool TryParse(Lines lines)
{