Remove end-of-program pauses

This commit is contained in:
Matt Nadareski
2024-10-31 20:36:40 -04:00
parent 0f6378cd2c
commit 08564ed607

View File

@@ -23,8 +23,6 @@ namespace Test
if (options == null)
{
Options.DisplayHelp();
Console.WriteLine("Press enter to close the program...");
Console.ReadLine();
return;
}
@@ -63,9 +61,6 @@ namespace Test
if (options.EnableScanning)
Protector.GetAndWriteProtections(scanner, inputPath);
}
Console.WriteLine("Press enter to close the program...");
Console.ReadLine();
}
}
}