Fix access level

This commit is contained in:
Matt Nadareski
2024-11-04 23:52:40 -05:00
parent 682529d7ba
commit d9661cd03d

View File

@@ -451,7 +451,7 @@ namespace BinaryObjectScanner
/// <param name="exe">Executable to scan the contents of</param>
/// <param name="checks">Set of classes returned from Exectuable scans</param>
/// <returns>Set of protections found from extraction, null on error</returns>
public ProtectionDictionary HandleExtractableProtections<T, U>(string file, T exe, IEnumerable<U> checks)
private ProtectionDictionary HandleExtractableProtections<T, U>(string file, T exe, IEnumerable<U> checks)
where T : WrapperBase
where U : IExecutableCheck<T>
{