[Refactor] Remove redundant type qualifiers.

This commit is contained in:
2024-05-01 21:42:49 +01:00
parent adfebec1d3
commit facfb0a972
9 changed files with 9 additions and 20 deletions

View File

@@ -30,14 +30,12 @@
// Copyright © 2011-2024 Natalia Portillo
// ****************************************************************************/
using Aaru.CommonTypes.Interfaces;
namespace Aaru.Filesystems;
// Information from http://www.trailing-edge.com/~shoppa/rt11fs/
/// <inheritdoc />
/// <summary>Implements detection of the DEC RT-11 filesystem</summary>
public sealed partial class RT11 : IFilesystem
public sealed partial class RT11
{
const string FS_TYPE = "rt11";
}

View File

@@ -31,14 +31,13 @@
// ****************************************************************************/
using System.Runtime.InteropServices;
using Aaru.CommonTypes.Interfaces;
namespace Aaru.Filesystems;
// Information from http://www.trailing-edge.com/~shoppa/rt11fs/
/// <inheritdoc />
/// <summary>Implements detection of the DEC RT-11 filesystem</summary>
public sealed partial class RT11 : IFilesystem
public sealed partial class RT11
{
#region Nested type: HomeBlock