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;
}
}