From ee8e54d6684b1806efad4677a88b66e1c7c48df2 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 8 Jan 2025 16:53:56 -0500 Subject: [PATCH] Remove now-unnecessary method overrides --- SabreTools.DatItems/Formats/SourceDetails.cs | 30 -------------------- 1 file changed, 30 deletions(-) diff --git a/SabreTools.DatItems/Formats/SourceDetails.cs b/SabreTools.DatItems/Formats/SourceDetails.cs index 241e63bb..cf728827 100644 --- a/SabreTools.DatItems/Formats/SourceDetails.cs +++ b/SabreTools.DatItems/Formats/SourceDetails.cs @@ -193,36 +193,6 @@ namespace SabreTools.DatItems.Formats #region Comparision Methods - /// - public override bool Equals(ModelBackedItem? other) - { - // If other is null - if (other == null) - return false; - - // If the type is mismatched - if (other is not DatItem otherItem) - return false; - - // Compare internal models - return Equals(otherItem); - } - - /// - public override bool Equals(ModelBackedItem? other) - { - // If other is null - if (other == null) - return false; - - // If the type is mismatched - if (other is not DatItem otherItem) - return false; - - // Compare internal models - return Equals(otherItem); - } - /// public override bool Equals(DatItem? other) {