Simplify AddItem invocation in Deduplicate

This commit is contained in:
Matt Nadareski
2025-01-21 12:05:49 -05:00
parent fd1c3eced1
commit 80d41d72d1

View File

@@ -711,10 +711,7 @@ namespace SabreTools.DatFiles
// Add the list back to the dictionary // Add the list back to the dictionary
RemoveBucket(key); RemoveBucket(key);
currentMappings.ForEach(map => currentMappings.ForEach(map =>
{ AddItem(map.Item, map.MachineId, map.SourceId));
AddItem(map.Item, map.MachineId, map.SourceId);
});
#if NET40_OR_GREATER || NETCOREAPP #if NET40_OR_GREATER || NETCOREAPP
}); });
#else #else