mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Redo Reformat and cleanup.
Rider EAP was having a bug interpreting .editorconfig that didn't generate the code style as we wanted. This is now done with Rider-stable.
This commit is contained in:
@@ -65,7 +65,8 @@ public sealed partial class ReFS : IFilesystem
|
||||
|
||||
VolumeHeader vhdr = Marshal.ByteArrayToStructureLittleEndian<VolumeHeader>(sector);
|
||||
|
||||
return vhdr.identifier == FSRS && ArrayHelpers.ArrayIsNullOrEmpty(vhdr.mustBeZero) &&
|
||||
return vhdr.identifier == FSRS &&
|
||||
ArrayHelpers.ArrayIsNullOrEmpty(vhdr.mustBeZero) &&
|
||||
vhdr.signature.SequenceEqual(_signature);
|
||||
}
|
||||
|
||||
@@ -132,7 +133,8 @@ public sealed partial class ReFS : IFilesystem
|
||||
sb.AppendFormat(Localization.Volume_uses_0_bytes_per_sector, vhdr.bytesPerSector).AppendLine();
|
||||
|
||||
sb.AppendFormat(Localization.Volume_uses_0_sectors_per_cluster_1_bytes, vhdr.sectorsPerCluster,
|
||||
vhdr.sectorsPerCluster * vhdr.bytesPerSector).AppendLine();
|
||||
vhdr.sectorsPerCluster * vhdr.bytesPerSector).
|
||||
AppendLine();
|
||||
|
||||
sb.AppendFormat(Localization.Volume_has_0_sectors_1_bytes, vhdr.sectors, vhdr.sectors * vhdr.bytesPerSector).
|
||||
AppendLine();
|
||||
|
||||
Reference in New Issue
Block a user