From 4b222003d24774fcb39877c456c2cdcf3d572e13 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 10 Sep 2020 21:47:14 -0700 Subject: [PATCH] Minor cleanup --- BurnOutSharp/ProtectionFind.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BurnOutSharp/ProtectionFind.cs b/BurnOutSharp/ProtectionFind.cs index 58d77e57..46bdd1c7 100644 --- a/BurnOutSharp/ProtectionFind.cs +++ b/BurnOutSharp/ProtectionFind.cs @@ -32,6 +32,7 @@ namespace BurnOutSharp /// Scan a path to find any known copy protection(s) /// /// Path to scan for protection(s) + /// True to include scanned copy protection position, false otherwise (default) /// Optional progress indicator that will return a float in the range from 0 to 1 /// Dictionary of filename to protection mappings, if possible public static Dictionary Scan(string path, bool includePosition = false, IProgress progress = null) @@ -343,8 +344,6 @@ namespace BurnOutSharp return string.Join(", ", protections); } - // TODO: Make `includePosition` optional in the two methods below - /// /// Scan an individual file for copy protection ///