mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-08 18:06:41 +00:00
Get rid of erroneous double semicolons
This commit is contained in:
@@ -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 };
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user