else if and a note

This commit is contained in:
Matt Nadareski
2023-01-18 08:39:27 -08:00
parent 52f4132ccb
commit 0d4d19559a

View File

@@ -89,7 +89,7 @@ namespace BurnOutSharp.FileType
}
// If we have a New Executable
if (wrapper is NewExecutable nex)
else if (wrapper is NewExecutable nex)
{
Parallel.ForEach(ScanningClasses.NewExecutableCheckClasses, contentCheckClass =>
{
@@ -140,6 +140,8 @@ namespace BurnOutSharp.FileType
});
}
// No other executable formats currently identified or supported
return protections;
}