From aeb3630d2608a37895a38626a08632f90d8d1eca Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 20 Jul 2020 07:47:05 +0100 Subject: [PATCH] Fix unused code. --- Interfaces/IFloppyImage.cs | 1 - Structs/Devices/ATA/Identify.cs | 3 --- 2 files changed, 4 deletions(-) diff --git a/Interfaces/IFloppyImage.cs b/Interfaces/IFloppyImage.cs index 70c0a2d4d..c85790a9c 100644 --- a/Interfaces/IFloppyImage.cs +++ b/Interfaces/IFloppyImage.cs @@ -116,7 +116,6 @@ namespace Aaru.CommonTypes.Interfaces /// Physical track (position of the heads over the floppy media, 0-based). /// Physical head (0-based). /// Logical sector ID. - /// Status of request. bool? VerifySector(ushort track, byte head, ushort sector); } } \ No newline at end of file diff --git a/Structs/Devices/ATA/Identify.cs b/Structs/Devices/ATA/Identify.cs index f1f57f0ba..970410765 100644 --- a/Structs/Devices/ATA/Identify.cs +++ b/Structs/Devices/ATA/Identify.cs @@ -1065,9 +1065,6 @@ namespace Aaru.CommonTypes.Structs.Devices.ATA buf[i + 1] = bytes[i]; } - string test1 = StringHandlers.CToString(buf); - string test2 = DescrambleATAString(buf, 0, length); - return buf; } }