From ef212fc8d920e8bee35a444b785d267d9fea20ab Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 1 May 2022 14:00:20 -0700 Subject: [PATCH] Remove library-level assignments in Scanner --- BurnOutSharp/Scanner.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BurnOutSharp/Scanner.cs b/BurnOutSharp/Scanner.cs index dbda41fe..dc4b5867 100644 --- a/BurnOutSharp/Scanner.cs +++ b/BurnOutSharp/Scanner.cs @@ -20,17 +20,17 @@ namespace BurnOutSharp /// /// Determines if debug information is output or not /// - public bool IncludeDebug { get; set; } = false; + public bool IncludeDebug { get; set; } /// /// Determines whether archives are decompressed and scanned /// - public bool ScanArchives { get; set; } = true; + public bool ScanArchives { get; set; } /// /// Determines if packers are counted as detected protections or not /// - public bool ScanPackers { get; set; } = false; + public bool ScanPackers { get; set; } /// /// Cache for all IPathCheck types