REFACTOR: Convert to lambda expression.

This commit is contained in:
2017-12-21 17:37:14 +00:00
parent 9a404acef4
commit 3053d22b91
9 changed files with 9 additions and 9 deletions

View File

@@ -77,7 +77,7 @@ namespace DiscImageChef.Core.Devices.Dumping
Checksum dataChk;
DataFile dumpFile;
bool aborted = false;
System.Console.CancelKeyPress += (sender, e) => { e.Cancel = aborted = true; };
System.Console.CancelKeyPress += (sender, e) => e.Cancel = aborted = true;
dumpLog.WriteLine("Reading Xbox Security Sector.");
sense = dev.KreonExtractSs(out byte[] ssBuf, out byte[] senseBuf, dev.Timeout, out double duration);