From f098e288d9e9c305e44a325cad10cffa1e3758e2 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 19 Mar 2024 14:11:34 -0400 Subject: [PATCH] Rename AddItemAndValidate to AddItem to reduce confusion --- SabreTools.DatFiles/ItemDictionaryDB.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreTools.DatFiles/ItemDictionaryDB.cs b/SabreTools.DatFiles/ItemDictionaryDB.cs index 5e6c6ce7..65d43afd 100644 --- a/SabreTools.DatFiles/ItemDictionaryDB.cs +++ b/SabreTools.DatFiles/ItemDictionaryDB.cs @@ -122,7 +122,7 @@ namespace SabreTools.DatFiles /// Index of the machine related to the item /// True to only add item statistics while parsing, false otherwise (default) /// The index for the added item, -1 on error - public long AddItemAndValidate(DatItem item, long machineIndex, bool statsOnly = false) + public long AddItem(DatItem item, long machineIndex, bool statsOnly = false) { // If we have a Disk, Media, or Rom, clean the hash data if (item is Disk disk)