mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Refactor: Simplify field names.
This commit is contained in:
@@ -779,12 +779,12 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
{
|
||||
xmlFileSysInfo[i] = new PartitionType
|
||||
{
|
||||
Description = partitions[i].PartitionDescription,
|
||||
EndSector = (int)(partitions[i].PartitionStartSector + partitions[i].PartitionSectors - 1),
|
||||
Name = partitions[i].PartitionName,
|
||||
Sequence = (int)partitions[i].PartitionSequence,
|
||||
StartSector = (int)partitions[i].PartitionStartSector,
|
||||
Type = partitions[i].PartitionType
|
||||
Description = partitions[i].Description,
|
||||
EndSector = (int)(partitions[i].Start + partitions[i].Length - 1),
|
||||
Name = partitions[i].Name,
|
||||
Sequence = (int)partitions[i].Sequence,
|
||||
StartSector = (int)partitions[i].Start,
|
||||
Type = partitions[i].Type
|
||||
};
|
||||
List<FileSystemType> lstFs = new List<FileSystemType>();
|
||||
|
||||
@@ -832,9 +832,9 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
|
||||
Partition wholePart = new Partition
|
||||
{
|
||||
PartitionName = "Whole device",
|
||||
PartitionSectors = blocks,
|
||||
PartitionLength = blocks * blockSize
|
||||
Name = "Whole device",
|
||||
Length = blocks,
|
||||
Size = blocks * blockSize
|
||||
};
|
||||
|
||||
foreach(Filesystem _plugin in plugins.PluginsList.Values)
|
||||
|
||||
Reference in New Issue
Block a user