mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
REFACTOR: Convert to lambda expression.
This commit is contained in:
@@ -236,7 +236,7 @@ namespace DiscImageChef.Core.Devices.Scanning
|
||||
results.UnreadableSectors = new List<ulong>();
|
||||
|
||||
aborted = false;
|
||||
System.Console.CancelKeyPress += (sender, e) => { e.Cancel = aborted = true; };
|
||||
System.Console.CancelKeyPress += (sender, e) => e.Cancel = aborted = true;
|
||||
|
||||
bool readcd = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user