General code refactor.

This commit is contained in:
2021-08-17 21:23:10 +01:00
parent 4fcaeffc85
commit 75edb759e6
513 changed files with 38377 additions and 48553 deletions

View File

@@ -44,9 +44,7 @@ using Marshal = Aaru.Helpers.Marshal;
namespace Aaru.Filesystems
{
/// <inheritdoc />
/// <summary>
/// Implements detection of the New Implementation of a Log-structured File System v2
/// </summary>
/// <summary>Implements detection of the New Implementation of a Log-structured File System v2</summary>
public sealed class NILFS2 : IFilesystem
{
const ushort NILFS2_MAGIC = 0x3434;
@@ -55,13 +53,13 @@ namespace Aaru.Filesystems
/// <inheritdoc />
public FileSystemType XmlFsType { get; private set; }
/// <inheritdoc />
public Encoding Encoding { get; private set; }
public Encoding Encoding { get; private set; }
/// <inheritdoc />
public string Name => "NILFS2 Plugin";
public string Name => "NILFS2 Plugin";
/// <inheritdoc />
public Guid Id => new Guid("35224226-C5CC-48B5-8FFD-3781E91E86B6");
public Guid Id => new Guid("35224226-C5CC-48B5-8FFD-3781E91E86B6");
/// <inheritdoc />
public string Author => "Natalia Portillo";
public string Author => "Natalia Portillo";
/// <inheritdoc />
public bool Identify(IMediaImage imagePlugin, Partition partition)