From 5eab12946f866daaf9d5cbd9f65273dc040e22cf Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 31 Oct 2024 21:13:09 -0400 Subject: [PATCH] Fix accidental change --- BinaryObjectScanner/Interfaces/IPathCheck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryObjectScanner/Interfaces/IPathCheck.cs b/BinaryObjectScanner/Interfaces/IPathCheck.cs index dbda4de7..4d081966 100644 --- a/BinaryObjectScanner/Interfaces/IPathCheck.cs +++ b/BinaryObjectScanner/Interfaces/IPathCheck.cs @@ -20,7 +20,7 @@ namespace BinaryObjectScanner.Interfaces /// Enumerable of strings representing files in a directory /// This can do some limited content checking as well, but it's suggested to use a content check instead, if possible #if NET20 || NET35 - List CheckDirectoryPath(string path, IEnumerable? files); + Queue CheckDirectoryPath(string path, IEnumerable? files); #else ConcurrentQueue CheckDirectoryPath(string path, IEnumerable? files); #endif