[Aaru.Filesystems] Reformat and cleanup.

This commit is contained in:
2023-10-03 23:22:08 +01:00
parent 51f35c80d9
commit 7a608e0061
296 changed files with 21000 additions and 18286 deletions

View File

@@ -34,8 +34,14 @@ namespace Aaru.Filesystems;
/// <summary>Implements detection of the New Implementation of a Log-structured File System v2</summary>
public sealed partial class NILFS2
{
#region Nested type: State
enum State : ushort
{
Valid = 0x0001, Error = 0x0002, Resize = 0x0004
Valid = 0x0001,
Error = 0x0002,
Resize = 0x0004
}
#endregion
}