From 08564ed6075317248113d2bde50f817f40ce5692 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 31 Oct 2024 20:36:40 -0400 Subject: [PATCH] Remove end-of-program pauses --- Test/Program.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Test/Program.cs b/Test/Program.cs index 8cad82a9..00921c9b 100644 --- a/Test/Program.cs +++ b/Test/Program.cs @@ -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(); } } }