mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Code style fixes.
This commit is contained in:
@@ -35,7 +35,7 @@ using System.Diagnostics.CodeAnalysis;
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
[SuppressMessage("ReSharper", "UnusedMember.Local")]
|
||||
public partial class CopyQm
|
||||
public sealed partial class CopyQm
|
||||
{
|
||||
const ushort COPYQM_MAGIC = 0x5143;
|
||||
const byte COPYQM_MARK = 0x14;
|
||||
|
||||
@@ -38,7 +38,7 @@ using Aaru.CommonTypes.Structs;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
public partial class CopyQm : IMediaImage, IVerifiableImage
|
||||
public sealed partial class CopyQm : IMediaImage, IVerifiableImage
|
||||
{
|
||||
uint _calculatedDataCrc;
|
||||
byte[] _decodedDisk;
|
||||
|
||||
@@ -36,7 +36,7 @@ using Aaru.CommonTypes.Interfaces;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
public partial class CopyQm
|
||||
public sealed partial class CopyQm
|
||||
{
|
||||
public bool Identify(IFilter imageFilter)
|
||||
{
|
||||
|
||||
@@ -37,7 +37,7 @@ using Schemas;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
public partial class CopyQm
|
||||
public sealed partial class CopyQm
|
||||
{
|
||||
public ImageInfo Info => _imageInfo;
|
||||
public string Name => "Sydex CopyQM";
|
||||
|
||||
@@ -40,7 +40,7 @@ using Aaru.Helpers;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
public partial class CopyQm
|
||||
public sealed partial class CopyQm
|
||||
{
|
||||
public bool Open(IFilter imageFilter)
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
public partial class CopyQm
|
||||
public sealed partial class CopyQm
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct CopyQmHeader
|
||||
|
||||
@@ -35,7 +35,7 @@ using Aaru.CommonTypes.Exceptions;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
public partial class CopyQm
|
||||
public sealed partial class CopyQm
|
||||
{
|
||||
public byte[] ReadSectorTag(ulong sectorAddress, SectorTagType tag) =>
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
|
||||
Reference in New Issue
Block a user