From a2a0e5c2eef71292dd9e629362f4a471a4f718ab Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 24 Aug 2021 15:19:10 -0700 Subject: [PATCH] Clean up TODOs in IContentCheck --- BurnOutSharp/IContentCheck.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BurnOutSharp/IContentCheck.cs b/BurnOutSharp/IContentCheck.cs index 665a8a90..f850d2d8 100644 --- a/BurnOutSharp/IContentCheck.cs +++ b/BurnOutSharp/IContentCheck.cs @@ -1,5 +1,7 @@ namespace BurnOutSharp { + // TODO: This should either include an override that takes a Stream instead of the byte[] + // OR have a completely separate check for when it's an executable specifically internal interface IContentCheck { /// @@ -9,7 +11,6 @@ /// Byte array representing the file contents /// True to include positional data, false otherwise /// String containing any protections found in the file - /// TODO: This should be replaced with a "GenerateMatchers" that produces a list of matchers to be run instead string CheckContents(string file, byte[] fileContent, bool includePosition); } }