mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Remove redundant parentheses.
This commit is contained in:
@@ -72,11 +72,11 @@ namespace DiscImageChef.Partitions
|
||||
|
||||
Partition _part = new Partition
|
||||
{
|
||||
Length = (end - start) + 1,
|
||||
Length = end - start + 1,
|
||||
Offset = (start + sectorOffset) * imagePlugin.GetSectorSize(),
|
||||
Scheme = Name,
|
||||
Sequence = (ulong)partitions.Count,
|
||||
Size = ((end - start) + 1) * imagePlugin.GetSectorSize(),
|
||||
Size = (end - start + 1) * imagePlugin.GetSectorSize(),
|
||||
Start = start + sectorOffset,
|
||||
Type = tokens[1]
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user