mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 11:14:25 +00:00
Remove redundant type declaration bodies.
This commit is contained in:
@@ -45,4 +45,4 @@ namespace Aaru.Archives;
|
||||
// Needs to have the interface here so the source generator knows THIS IS the class
|
||||
// ReSharper disable once RedundantExtendsListEntry
|
||||
/// <inheritdoc />
|
||||
public sealed partial class Register : IPluginRegister {}
|
||||
public sealed partial class Register : IPluginRegister;
|
||||
Submodule Aaru.Checksums updated: 73def971ac...b39c1ad1d7
Submodule Aaru.CommonTypes updated: cf72e7b617...9a8265418d
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Command statistics.</summary>
|
||||
public class Command : NameCountModel {}
|
||||
public class Command : NameCountModel;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Filesystem found</summary>
|
||||
public class Filesystem : NameCountModel {}
|
||||
public class Filesystem : NameCountModel;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Filter used</summary>
|
||||
public class Filter : NameCountModel {}
|
||||
public class Filter : NameCountModel;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Media image format</summary>
|
||||
public class MediaFormat : NameCountModel {}
|
||||
public class MediaFormat : NameCountModel;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Operating system</summary>
|
||||
public class OperatingSystem : BaseOperatingSystem {}
|
||||
public class OperatingSystem : BaseOperatingSystem;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Partitioning scheme</summary>
|
||||
public class Partition : NameCountModel {}
|
||||
public class Partition : NameCountModel;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Remote application</summary>
|
||||
public class RemoteApplication : BaseOperatingSystem {}
|
||||
public class RemoteApplication : BaseOperatingSystem;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Remote architecture</summary>
|
||||
public class RemoteArchitecture : NameCountModel {}
|
||||
public class RemoteArchitecture : NameCountModel;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Remote operating system</summary>
|
||||
public class RemoteOperatingSystem : BaseOperatingSystem {}
|
||||
public class RemoteOperatingSystem : BaseOperatingSystem;
|
||||
@@ -34,4 +34,4 @@ namespace Aaru.Database.Models;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Aaru version</summary>
|
||||
public class Version : NameCountModel {}
|
||||
public class Version : NameCountModel;
|
||||
@@ -100,7 +100,7 @@ public sealed partial class CPM
|
||||
IncludeFields = true)]
|
||||
[JsonSerializable(typeof(CpmDefinitions))]
|
||||
// ReSharper disable once PartialTypeWithSinglePart
|
||||
public partial class CpmDefinitionsContext : JsonSerializerContext {}
|
||||
public partial class CpmDefinitionsContext : JsonSerializerContext;
|
||||
|
||||
/// <summary>CP/M disk definitions</summary>
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
|
||||
@@ -39,4 +39,4 @@ namespace Aaru.Filesystems;
|
||||
// Needs to have the interface here so the source generator knows THIS IS the class
|
||||
// ReSharper disable once RedundantExtendsListEntry
|
||||
/// <inheritdoc />
|
||||
public sealed partial class Register : IPluginRegister {}
|
||||
public sealed partial class Register : IPluginRegister;
|
||||
@@ -43,4 +43,4 @@ namespace Aaru.Filters;
|
||||
// Needs to have the interface here so the source generator knows THIS IS the class
|
||||
// ReSharper disable once RedundantExtendsListEntry
|
||||
/// <inheritdoc />
|
||||
public sealed partial class Register : IPluginRegister {}
|
||||
public sealed partial class Register : IPluginRegister;
|
||||
@@ -34,4 +34,4 @@ using ReactiveUI;
|
||||
|
||||
namespace Aaru.Gui.ViewModels;
|
||||
|
||||
public class ViewModelBase : ReactiveObject {}
|
||||
public class ViewModelBase : ReactiveObject;
|
||||
@@ -43,4 +43,4 @@ namespace Aaru.DiscImages;
|
||||
// Needs to have the interface here so the source generator knows THIS IS the class
|
||||
// ReSharper disable once RedundantExtendsListEntry
|
||||
/// <inheritdoc />
|
||||
public sealed partial class Register : IPluginRegister {}
|
||||
public sealed partial class Register : IPluginRegister;
|
||||
@@ -43,4 +43,4 @@ namespace Aaru.Partitions;
|
||||
// Needs to have the interface here so the source generator knows THIS IS the class
|
||||
// ReSharper disable once RedundantExtendsListEntry
|
||||
/// <inheritdoc />
|
||||
public sealed partial class Register : IPluginRegister {}
|
||||
public sealed partial class Register : IPluginRegister;
|
||||
@@ -48,7 +48,7 @@ namespace Aaru.Settings;
|
||||
IncludeFields = true)]
|
||||
[JsonSerializable(typeof(DicSettings))]
|
||||
// ReSharper disable once PartialTypeWithSinglePart
|
||||
public partial class SettingsContext : JsonSerializerContext {}
|
||||
public partial class SettingsContext : JsonSerializerContext;
|
||||
|
||||
/// <summary>Settings</summary>
|
||||
public class DicSettings
|
||||
|
||||
Reference in New Issue
Block a user