diff --git a/CHANGELIST.md b/CHANGELIST.md index f8c09843..a0129c7e 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -23,6 +23,7 @@ - Remove unncessary .NET Framework 4.0 gating - Improve parameters for default output path - Replace some uses of Regex.Replace +- Clean up usings after last commit ### 3.2.3 (2024-11-06) diff --git a/MPF.Processors/BaseProcessor.cs b/MPF.Processors/BaseProcessor.cs index 3fcc1847..64dfd332 100644 --- a/MPF.Processors/BaseProcessor.cs +++ b/MPF.Processors/BaseProcessor.cs @@ -6,7 +6,6 @@ using System.IO.Compression; #endif using System.Linq; using System.Text; -using System.Text.RegularExpressions; using SabreTools.RedumpLib.Data; namespace MPF.Processors diff --git a/MPF.Processors/PS3CFW.cs b/MPF.Processors/PS3CFW.cs index 4d336235..456fed90 100644 --- a/MPF.Processors/PS3CFW.cs +++ b/MPF.Processors/PS3CFW.cs @@ -1,6 +1,5 @@ using System.Collections.Generic; using System.IO; -using System.Text.RegularExpressions; using SabreTools.Hashing; using SabreTools.Models.Logiqx; using SabreTools.RedumpLib;