Skip to content

Commit

Permalink
[Refactor] Remove redundant type qualifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
claunia committed May 1, 2024
1 parent adfebec commit facfb0a
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 20 deletions.
4 changes: 1 addition & 3 deletions Aaru.Filesystems/PCFX/Consts.cs
Expand Up @@ -30,14 +30,12 @@
// Copyright © 2011-2024 Natalia Portillo
// ****************************************************************************/

using Aaru.CommonTypes.Interfaces;

namespace Aaru.Filesystems;

// Not a filesystem, more like an executable header
/// <inheritdoc />
/// <summary>Implements detection of NEC PC-FX headers</summary>
public sealed partial class PCFX : IFilesystem
public sealed partial class PCFX
{
const string IDENTIFIER = "PC-FX:Hu_CD-ROM ";

Expand Down
2 changes: 1 addition & 1 deletion Aaru.Filesystems/RBF/Info.cs
Expand Up @@ -38,7 +38,7 @@ namespace Aaru.Filesystems;

/// <inheritdoc />
/// <summary>Implements detection of the Locus filesystem</summary>
public sealed partial class RBF : IFilesystem
public sealed partial class RBF
{
#region IFilesystem Members

Expand Down
4 changes: 1 addition & 3 deletions Aaru.Filesystems/RT11/Consts.cs
Expand Up @@ -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";
}
3 changes: 1 addition & 2 deletions Aaru.Filesystems/RT11/Structs.cs
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Aaru.Filesystems/ReFS/Info.cs
Expand Up @@ -40,7 +40,7 @@ namespace Aaru.Filesystems;

/// <inheritdoc />
/// <summary>Implements detection of Microsoft's Resilient filesystem (ReFS)</summary>
public sealed partial class ReFS : IFilesystem
public sealed partial class ReFS
{
#region IFilesystem Members

Expand Down
2 changes: 1 addition & 1 deletion Aaru.Filesystems/Reiser/Info.cs
Expand Up @@ -38,7 +38,7 @@ namespace Aaru.Filesystems;

/// <inheritdoc />
/// <summary>Implements detection of the Reiser v3 filesystem</summary>
public sealed partial class Reiser : IFilesystem
public sealed partial class Reiser
{
#region IFilesystem Members

Expand Down
3 changes: 1 addition & 2 deletions Aaru.Filesystems/SFS/Structs.cs
Expand Up @@ -27,13 +27,12 @@
// ****************************************************************************/

using System.Runtime.InteropServices;
using Aaru.CommonTypes.Interfaces;

namespace Aaru.Filesystems;

/// <inheritdoc />
/// <summary>Implements detection of the Smart File System</summary>
public sealed partial class SFS : IFilesystem
public sealed partial class SFS
{
#region Nested type: RootBlock

Expand Down
2 changes: 1 addition & 1 deletion Aaru.Images/A2R/A2R.cs
Expand Up @@ -44,7 +44,7 @@ namespace Aaru.Images;
/// <inheritdoc cref="Aaru.CommonTypes.Interfaces.IMediaImage" />
/// <summary>Implements reading A2R flux images</summary>
[SuppressMessage("ReSharper", "UnusedType.Global")]
public sealed partial class A2R : IFluxImage, IMediaImage, IWritableImage, IWritableFluxImage
public sealed partial class A2R : IWritableFluxImage
{
const string MODULE_NAME = "A2R plugin";
List<StreamCapture> _a2RCaptures;
Expand Down
7 changes: 1 addition & 6 deletions Aaru.Images/SuperCardPro/SuperCardPro.cs
Expand Up @@ -39,12 +39,7 @@ namespace Aaru.Images;

/// <inheritdoc cref="Aaru.CommonTypes.Interfaces.IMediaImage" />
/// <summary>Implements reading SuperCardPro flux images</summary>
public sealed partial class SuperCardPro : IFluxImage,
IMediaImage,
IWritableImage,
IVerifiableImage,
IVerifiableSectorsImage,
IWritableFluxImage
public sealed partial class SuperCardPro : IVerifiableImage, IVerifiableSectorsImage, IWritableFluxImage
{
const string MODULE_NAME = "SuperCardPro plugin";
ImageInfo _imageInfo;
Expand Down

0 comments on commit facfb0a

Please sign in to comment.