[Aaru.Images] Reformat and cleanup.

This commit is contained in:
2023-10-03 23:34:59 +01:00
parent 6ffde343ce
commit 2cfad87955
432 changed files with 12011 additions and 8261 deletions

View File

@@ -37,12 +37,16 @@ namespace Aaru.DiscImages;
public sealed partial class DiscFerret
{
#region IVerifiableSectorsImage Members
/// <inheritdoc />
public bool? VerifySector(ulong sectorAddress) =>
throw new NotImplementedException(Localization.Flux_decoding_is_not_yet_implemented);
/// <inheritdoc />
public bool? VerifySectors(ulong sectorAddress, uint length, out List<ulong> failingLbas,
public bool? VerifySectors(ulong sectorAddress, uint length, out List<ulong> failingLbas,
out List<ulong> unknownLbas) =>
throw new NotImplementedException(Localization.Flux_decoding_is_not_yet_implemented);
#endregion
}