Use List where possible

This commit is contained in:
Matt Nadareski
2024-11-20 17:05:40 -05:00
parent 9cc2f99334
commit cf62be365c
65 changed files with 65 additions and 65 deletions

View File

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