Fix everything

This commit is contained in:
Matt Nadareski
2026-03-24 19:17:25 -04:00
parent e11a08b587
commit 8f49e190d8
206 changed files with 1202 additions and 1647 deletions

View File

@@ -717,7 +717,7 @@ namespace SabreTools.Metadata.DatFiles
}
// Now that every device reference is accounted for, add the new list of device references, if they don't already exist
foreach (string deviceReference in newDeviceReferences)
foreach (var deviceReference in newDeviceReferences)
{
if (!deviceReferences.Contains(deviceReference))
{
@@ -767,7 +767,7 @@ namespace SabreTools.Metadata.DatFiles
}
// Now that every device is accounted for, add the new list of slot options, if they don't already exist
foreach (string slotOption in newSlotOptions)
foreach (var slotOption in newSlotOptions)
{
if (!slotOptions.Contains(slotOption))
{
@@ -884,7 +884,7 @@ namespace SabreTools.Metadata.DatFiles
}
// Now that every device reference is accounted for, add the new list of device references, if they don't already exist
foreach (string deviceReference in newDeviceReferences)
foreach (var deviceReference in newDeviceReferences)
{
if (!deviceReferences.Contains(deviceReference))
{
@@ -940,7 +940,7 @@ namespace SabreTools.Metadata.DatFiles
}
// Now that every device is accounted for, add the new list of slot options, if they don't already exist
foreach (string slotOption in newSlotOptions)
foreach (var slotOption in newSlotOptions)
{
if (!slotOptions.Contains(slotOption))
{