Get rid of erroneous double semicolons

This commit is contained in:
Matt Nadareski
2024-12-17 15:43:22 -05:00
parent ed6556b1f0
commit 261c20e95a
6 changed files with 10 additions and 10 deletions

View File

@@ -103,7 +103,7 @@ namespace SabreTools.Serialization.CrossModel
var romSizes = Array.ConvertAll(roms, r => r.ReadLong(Models.Metadata.Rom.SizeKey) ?? -1);
game.RomSize = Array.Find(romSizes, s => s > -1).ToString();
var romCRCs = Array.ConvertAll(roms, ConvertFromInternalModel);;
var romCRCs = Array.ConvertAll(roms, ConvertFromInternalModel);
game.Files = new Files { RomCRC = romCRCs };
}

View File

@@ -93,7 +93,7 @@ namespace SabreTools.Serialization.Deserializers
// Try to parse the block entry maps
for (int i = 0; i < file.BlockEntryMapHeader.BlockCount; i++)
{
file.BlockEntryMaps[i] = ParseBlockEntryMap(data); ;
file.BlockEntryMaps[i] = ParseBlockEntryMap(data);
}
}

View File

@@ -83,7 +83,7 @@ namespace SabreTools.Serialization.Deserializers
data.Seek(tableAddress, SeekOrigin.Begin);
// Set the resource table
executable.ResourceTable = ParseResourceTable(data, header.ResourceEntriesCount); ;
executable.ResourceTable = ParseResourceTable(data, header.ResourceEntriesCount);
#endregion

View File

@@ -73,7 +73,7 @@ namespace SabreTools.Serialization.Deserializers
// Read all segments in turn
for (int i = 0; i < header.NumberOfFiles; i++)
{
archive.Segments[i] = ParseSegment(data, header.FileSegmentSize); ;
archive.Segments[i] = ParseSegment(data, header.FileSegmentSize);
}
#endregion

View File

@@ -153,7 +153,7 @@ namespace SabreTools.Serialization.Deserializers
int endOffset = (int)(baseRelocationTableAddress + executable.OptionalHeader.BaseRelocationTable.Size);
// Set the base relocation table
executable.BaseRelocationTable = ParseBaseRelocationTable(data, endOffset, executable.SectionTable); ;
executable.BaseRelocationTable = ParseBaseRelocationTable(data, endOffset, executable.SectionTable);
}
#endregion
@@ -174,7 +174,7 @@ namespace SabreTools.Serialization.Deserializers
int endOffset = (int)(debugTableAddress + executable.OptionalHeader.Debug.Size);
// Set the debug table
executable.DebugTable = ParseDebugTable(data, endOffset); ;
executable.DebugTable = ParseDebugTable(data, endOffset);
}
#endregion
@@ -194,7 +194,7 @@ namespace SabreTools.Serialization.Deserializers
data.Seek(exportTableAddress, SeekOrigin.Begin);
// Set the export table
executable.ExportTable = ParseExportTable(data, executable.SectionTable); ;
executable.ExportTable = ParseExportTable(data, executable.SectionTable);
}
#endregion
@@ -214,7 +214,7 @@ namespace SabreTools.Serialization.Deserializers
data.Seek(importTableAddress, SeekOrigin.Begin);
// Set the import table
executable.ImportTable = ParseImportTable(data, executable.OptionalHeader.Magic, executable.SectionTable);;
executable.ImportTable = ParseImportTable(data, executable.OptionalHeader.Magic, executable.SectionTable);
}
#endregion
@@ -234,7 +234,7 @@ namespace SabreTools.Serialization.Deserializers
data.Seek(resourceTableAddress, SeekOrigin.Begin);
// Set the resource directory table
executable.ResourceDirectoryTable = ParseResourceDirectoryTable(data, data.Position, executable.SectionTable, true);;
executable.ResourceDirectoryTable = ParseResourceDirectoryTable(data, data.Position, executable.SectionTable, true);
}
#endregion

View File

@@ -40,7 +40,7 @@ namespace SabreTools.Serialization.Deserializers
// Read all entries in turn
for (int i = 0; i < header.FileCount; i++)
{
fileDescriptors[i] = ParseFileDescriptor(data, header.MinorVersion);;
fileDescriptors[i] = ParseFileDescriptor(data, header.MinorVersion);
}
// Set the file list