From 3ba4db8f0a198948dcbd04788e82d93f474ba68d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 21 May 2024 21:00:04 -0400 Subject: [PATCH] Remove unused byte array constant --- CHANGELIST.md | 1 + MPF.Core/Data/Constants.cs | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index 23530043..dc035cdc 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -37,6 +37,7 @@ - Clean up usings after moving methods - Remove Chime - Move string contents for UI to view model +- Remove unused byte array constant ### 3.1.9a (2024-05-21) diff --git a/MPF.Core/Data/Constants.cs b/MPF.Core/Data/Constants.cs index 7d603ade..7e97848b 100644 --- a/MPF.Core/Data/Constants.cs +++ b/MPF.Core/Data/Constants.cs @@ -9,9 +9,6 @@ namespace MPF.Core.Data /// public static class Interface { - // Byte arrays for signatures - public static readonly byte[] SaturnSectorZeroStart = [0x53, 0x45, 0x47, 0x41, 0x20, 0x53, 0x45, 0x47, 0x41, 0x53, 0x41, 0x54, 0x55, 0x52, 0x4E, 0x20]; - // Lists of known drive speed ranges #if NET20 || NET35 || NET40 public static IList CD { get; } = new List { 1, 2, 3, 4, 6, 8, 12, 16, 20, 24, 32, 40, 44, 48, 52, 56, 72 };