Move one Equals implementation to correct base class

This commit is contained in:
Matt Nadareski
2025-01-08 14:43:34 -05:00
parent 9ed9c512f4
commit ee32d26148
3 changed files with 16 additions and 17 deletions

View File

@@ -88,7 +88,7 @@ namespace SabreTools.DatItems.Formats
// Otherwise, treat it as a Blank
Blank? newOther = other as Blank;
// If the archive information matches
// If the machine information matches
return GetFieldValue<Machine>(DatItem.MachineKey) == newOther!.GetFieldValue<Machine>(DatItem.MachineKey);
}