Fix accidental change

This commit is contained in:
Matt Nadareski
2024-10-31 21:13:09 -04:00
parent 683cfb6306
commit 5eab12946f

View File

@@ -20,7 +20,7 @@ namespace BinaryObjectScanner.Interfaces
/// <param name="files">Enumerable of strings representing files in a directory</param>
/// <remarks>This can do some limited content checking as well, but it's suggested to use a content check instead, if possible</remarks>
#if NET20 || NET35
List<string> CheckDirectoryPath(string path, IEnumerable<string>? files);
Queue<string> CheckDirectoryPath(string path, IEnumerable<string>? files);
#else
ConcurrentQueue<string> CheckDirectoryPath(string path, IEnumerable<string>? files);
#endif