mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Removed reduntant commas.
This commit is contained in:
@@ -491,7 +491,7 @@ namespace DiscImageChef.Filesystems
|
||||
Bootable = oldMap1.boot != 0, // Or not?
|
||||
Clusters = (long)(bytes / imagePlugin.ImageInfo.SectorSize),
|
||||
ClusterSize = (int)imagePlugin.ImageInfo.SectorSize,
|
||||
Type = "Acorn Advanced Disc Filing System",
|
||||
Type = "Acorn Advanced Disc Filing System"
|
||||
};
|
||||
|
||||
if(ArrayHelpers.ArrayIsNullOrEmpty(namebytes))
|
||||
|
||||
@@ -137,7 +137,7 @@ namespace DiscImageChef.Filesystems
|
||||
Dirty = false,
|
||||
Type = "HAMMER",
|
||||
VolumeName = StringHandlers.CToString(hammer_sb.vol_label, CurrentEncoding),
|
||||
VolumeSerial = hammer_sb.vol_fsid.ToString(),
|
||||
VolumeSerial = hammer_sb.vol_fsid.ToString()
|
||||
};
|
||||
|
||||
if(hammer_sb.vol_no == hammer_sb.vol_rootvol)
|
||||
|
||||
@@ -56,7 +56,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
OtherDelete = 1 << 4,
|
||||
OtherExec = 1 << 5,
|
||||
OtherWrite = 1 << 6,
|
||||
OtherRead = 1 << 7,
|
||||
OtherRead = 1 << 7
|
||||
}
|
||||
|
||||
[Flags]
|
||||
@@ -69,7 +69,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
Archive = 1 << 4,
|
||||
Reentrant = 1 << 5,
|
||||
Script = 1 << 6,
|
||||
Reserved = 1 << 7,
|
||||
Reserved = 1 << 7
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -42,13 +42,13 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
enum CdiVolumeFlags : byte
|
||||
{
|
||||
// Escapes are not ISO 2375 but ISO 2022
|
||||
NotISO2375 = 1,
|
||||
NotISO2375 = 1
|
||||
}
|
||||
|
||||
[Flags]
|
||||
enum CdiFileFlags : byte
|
||||
{
|
||||
Hidden = 0x01,
|
||||
Hidden = 0x01
|
||||
}
|
||||
|
||||
[Flags]
|
||||
@@ -61,7 +61,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
OtherRead = 1 << 8,
|
||||
OtherExecute = 1 << 10,
|
||||
DigitalAudio = 1 << 14,
|
||||
Directory = 1 << 15,
|
||||
Directory = 1 << 15
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -59,7 +59,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
GroupRead = 0x100,
|
||||
GroupExecute = 0x400,
|
||||
OtherRead = 0x1000,
|
||||
OtherExecute = 0x4000,
|
||||
OtherExecute = 0x4000
|
||||
}
|
||||
|
||||
enum RecordFormat : byte
|
||||
@@ -74,7 +74,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
LFCR = 0,
|
||||
ISO1539 = 1,
|
||||
ControlContained = 2,
|
||||
ControlContained = 2
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -107,7 +107,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
Backup = 1 << 4,
|
||||
Expiration = 1 << 5,
|
||||
Effective = 1 << 6,
|
||||
LongFormat = 1 << 7,
|
||||
LongFormat = 1 << 7
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -51,7 +51,7 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
Mode2Form2 = 0x1000,
|
||||
Interleaved = 0x2000,
|
||||
Cdda = 0x4000,
|
||||
Directory = 0x8000,
|
||||
Directory = 0x8000
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -354,7 +354,7 @@ namespace DiscImageChef.Filesystems
|
||||
ModificationDateSpecified = true,
|
||||
Dirty = !LocusSb.s_flags.HasFlag(LocusFlags.SB_CLEAN) || LocusSb.s_flags.HasFlag(LocusFlags.SB_DIRTY),
|
||||
FreeClusters = LocusSb.s_tfree,
|
||||
FreeClustersSpecified = true,
|
||||
FreeClustersSpecified = true
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user