From 5eeee760f7184efc9510e195a2d9a567a862c18a Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 26 Aug 2023 22:53:35 -0400 Subject: [PATCH] Remove unnecessary param summaries --- BinaryObjectScanner.Matching/FilePathMatch.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/BinaryObjectScanner.Matching/FilePathMatch.cs b/BinaryObjectScanner.Matching/FilePathMatch.cs index 9d1c0855..62d83e02 100644 --- a/BinaryObjectScanner.Matching/FilePathMatch.cs +++ b/BinaryObjectScanner.Matching/FilePathMatch.cs @@ -11,8 +11,6 @@ namespace BinaryObjectScanner.Matching /// Constructor /// /// String representing the search - /// True to match exact casing, false otherwise - /// True to match the end only, false for all contents public FilePathMatch(string needle) : base($"{Path.DirectorySeparatorChar}{needle}", false, true) { } } } \ No newline at end of file