General code cleanup and style refactor.

This commit is contained in:
2022-11-15 15:58:43 +00:00
parent f59ecffb59
commit 2f9b7fe0a1
1324 changed files with 36815 additions and 37688 deletions

View File

@@ -31,15 +31,13 @@
// In the loving memory of Facunda "Tata" Suárez Domínguez, R.I.P. 2019/07/24
// ****************************************************************************/
// ReSharper disable UnusedMember.Local
namespace Aaru.Filesystems;
using System;
using Aaru.Helpers;
namespace Aaru.Filesystems;
public sealed partial class ISO9660
{
const string CDI_MAGIC = "CD-I ";
@@ -62,13 +60,8 @@ public sealed partial class ISO9660
[Flags]
enum CdiAttributes : ushort
{
OwnerRead = 1 << 0,
OwnerExecute = 1 << 2,
GroupRead = 1 << 4,
GroupExecute = 1 << 6,
OtherRead = 1 << 8,
OtherExecute = 1 << 10,
DigitalAudio = 1 << 14,
Directory = 1 << 15
OwnerRead = 1 << 0, OwnerExecute = 1 << 2, GroupRead = 1 << 4,
GroupExecute = 1 << 6, OtherRead = 1 << 8, OtherExecute = 1 << 10,
DigitalAudio = 1 << 14, Directory = 1 << 15
}
}