diff --git a/SabreTools.DatItems/Formats/Serials.cs b/SabreTools.DatItems/Formats/Serials.cs
index 83baa0b7..65ec412b 100644
--- a/SabreTools.DatItems/Formats/Serials.cs
+++ b/SabreTools.DatItems/Formats/Serials.cs
@@ -1,6 +1,5 @@
using System.Xml.Serialization;
using Newtonsoft.Json;
-using SabreTools.Core;
using SabreTools.Core.Tools;
// TODO: Add item mappings for all fields
@@ -150,36 +149,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)
{