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:
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user