From 51ff7169d288f62899bd565aac839fcaa4f00fa8 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 8 Jan 2025 16:40:09 -0500 Subject: [PATCH] Remove now-unnecessary method overrides --- SabreTools.DatItems/Formats/ReleaseDetails.cs | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/SabreTools.DatItems/Formats/ReleaseDetails.cs b/SabreTools.DatItems/Formats/ReleaseDetails.cs index c1177b50..b5017e01 100644 --- a/SabreTools.DatItems/Formats/ReleaseDetails.cs +++ b/SabreTools.DatItems/Formats/ReleaseDetails.cs @@ -158,36 +158,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) {