Fix misnamed paramter in IScannable

This commit is contained in:
Matt Nadareski
2022-12-08 21:42:24 -08:00
parent ce7ecc78cc
commit 4f16b9d9e8

View File

@@ -24,6 +24,6 @@ namespace BurnOutSharp.Interfaces
/// <param name="stream">Stream representing the input file</param>
/// <param name="file">Path to the input file</param>
/// <returns>Dictionary mapping paths to protection lists</returns>
ConcurrentDictionary<string, ConcurrentQueue<string>> Scan(Scanner scanner, Stream stream, string filename);
ConcurrentDictionary<string, ConcurrentQueue<string>> Scan(Scanner scanner, Stream stream, string file);
}
}