From 0fe30d2d4f8940bb7d4022e29b71a9c05e17015f Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 22 May 2025 12:11:01 -0400 Subject: [PATCH] Remove unnecessary conditional --- CHANGELIST.md | 1 + MPF.Processors/Redumper.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index d428b529..bebe0dab 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -64,6 +64,7 @@ - Minor Check UI improvements - Reset Redump errors when an INFO block is found - Handle error count resets in Redumper +- Remove unnecessary conditional ### 3.3.0 (2025-01-03) diff --git a/MPF.Processors/Redumper.cs b/MPF.Processors/Redumper.cs index 20637cab..046bd54e 100644 --- a/MPF.Processors/Redumper.cs +++ b/MPF.Processors/Redumper.cs @@ -1914,7 +1914,7 @@ namespace MPF.Processors // SCSI: // SCSI: samples - if (line.StartsWith("SCSI: ") && !line.EndsWith("samples")) + if (line.StartsWith("SCSI: ")) { // Ensure there are the correct number of parts string[] parts = line.Split(' ');