Apply all analysis suggestions

This commit is contained in:
Adrian Conlon
2024-10-12 09:14:29 +01:00
parent 3d9b0aac56
commit 9aa25fed7e
17 changed files with 304 additions and 323 deletions
+1 -4
View File
@@ -19,9 +19,6 @@ namespace EightBit
public AccessLevel Access { get; set; } = access;
public int Offset(ushort absolute)
{
return (absolute - Begin) & Mask;
}
public int Offset(ushort absolute) => (absolute - this.Begin) & this.Mask;
}
}