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:
@@ -280,7 +280,7 @@ namespace DiscImageChef.Filesystems
|
||||
|
||||
if(anchor.tag.tagIdentifier == TagIdentifier.AnchorVolumeDescriptorPointer &&
|
||||
anchor.tag.tagLocation == position &&
|
||||
(anchor.mainVolumeDescriptorSequenceExtent.location + partition.Start) < partition.End)
|
||||
anchor.mainVolumeDescriptorSequenceExtent.location + partition.Start < partition.End)
|
||||
{
|
||||
anchorFound = true;
|
||||
break;
|
||||
@@ -347,7 +347,7 @@ namespace DiscImageChef.Filesystems
|
||||
|
||||
if(anchor.tag.tagIdentifier == TagIdentifier.AnchorVolumeDescriptorPointer &&
|
||||
anchor.tag.tagLocation == position &&
|
||||
(anchor.mainVolumeDescriptorSequenceExtent.location + partition.Start) < partition.End) break;
|
||||
anchor.mainVolumeDescriptorSequenceExtent.location + partition.Start < partition.End) break;
|
||||
}
|
||||
|
||||
ulong count = 0;
|
||||
@@ -457,7 +457,7 @@ namespace DiscImageChef.Filesystems
|
||||
xmlFSType.ApplicationIdentifier = CurrentEncoding
|
||||
.GetString(pvd.implementationIdentifier.identifier).TrimEnd(new char[] {'\u0000'});
|
||||
xmlFSType.ClusterSize = (int)lvd.logicalBlockSize;
|
||||
xmlFSType.Clusters = (long)(((partition.End - partition.Start + 1) * imagePlugin.ImageInfo.SectorSize) /
|
||||
xmlFSType.Clusters = (long)((partition.End - partition.Start + 1) * imagePlugin.ImageInfo.SectorSize /
|
||||
(ulong)xmlFSType.ClusterSize);
|
||||
xmlFSType.ModificationDate = ECMAToDateTime(lvid.recordingDateTime);
|
||||
xmlFSType.ModificationDateSpecified = true;
|
||||
|
||||
Reference in New Issue
Block a user