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)
{