mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
General code refactor.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user