Remove spurious debug message.

This commit is contained in:
2021-07-15 13:53:26 +01:00
parent 874d203aa1
commit 8546d03aee

View File

@@ -955,16 +955,7 @@ namespace Aaru.DiscImages
byte[] sector = br.ReadBytes((int)sectorSize);
br.BaseStream.Seek(sectorSkip, SeekOrigin.Current);
try
{
Array.Copy(sector, 0, buffer, i * sectorSize, sectorSize);
}
catch(Exception e)
{
System.Console.WriteLine(e);
throw;
}
Array.Copy(sector, 0, buffer, i * sectorSize, sectorSize);
}
return buffer;