Remove now-useless ShouldScan

This commit is contained in:
Matt Nadareski
2022-12-08 21:37:11 -08:00
parent 39f2dd88aa
commit 9c8a677f13
18 changed files with 0 additions and 256 deletions

View File

@@ -13,15 +13,6 @@ namespace BurnOutSharp.FileType
/// </summary>
public class InstallShieldCAB : IScannable
{
/// <inheritdoc/>
public bool ShouldScan(byte[] magic)
{
if (magic.StartsWith(new byte?[] { 0x49, 0x53, 0x63 }))
return true;
return false;
}
/// <inheritdoc/>
public ConcurrentDictionary<string, ConcurrentQueue<string>> Scan(Scanner scanner, string file)
{