Use List where possible

This commit is contained in:
Matt Nadareski
2024-11-20 17:10:03 -05:00
parent cf62be365c
commit 7122aa44a1
65 changed files with 69 additions and 66 deletions

View File

@@ -53,7 +53,7 @@ namespace BinaryObjectScanner.Protection
}
/// <inheritdoc/>
public List<string> CheckDirectoryPath(string path, IEnumerable<string>? files)
public List<string> CheckDirectoryPath(string path, List<string>? files)
{
var matchers = new List<PathMatchSet>
{