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:
@@ -152,7 +152,7 @@ namespace DiscImageChef.Filesystems
|
||||
public override bool Identify(ImagePlugins.ImagePlugin imagePlugin, Partition partition)
|
||||
{
|
||||
uint bootSectors = JFS_BootBlocksSize / imagePlugin.GetSectorSize();
|
||||
byte[] sector = imagePlugin.ReadSector(partition.PartitionStartSector + bootSectors);
|
||||
byte[] sector = imagePlugin.ReadSector(partition.Start + bootSectors);
|
||||
if(sector.Length < 512)
|
||||
return false;
|
||||
|
||||
@@ -170,7 +170,7 @@ namespace DiscImageChef.Filesystems
|
||||
information = "";
|
||||
StringBuilder sb = new StringBuilder();
|
||||
uint bootSectors = JFS_BootBlocksSize / imagePlugin.GetSectorSize();
|
||||
byte[] sector = imagePlugin.ReadSector(partition.PartitionStartSector + bootSectors);
|
||||
byte[] sector = imagePlugin.ReadSector(partition.Start + bootSectors);
|
||||
if(sector.Length < 512)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user