Switch order of interface parameters

This commit is contained in:
Matt Nadareski
2022-03-14 22:51:17 -07:00
parent a7e9164f4f
commit ceae505f4d
54 changed files with 60 additions and 60 deletions

View File

@@ -22,7 +22,7 @@ namespace BurnOutSharp.ProtectionType
*/
/// <inheritdoc/>
public string CheckPEContents(string file, bool includeDebug, PortableExecutable pex)
public string CheckPEContents(string file, PortableExecutable pex, bool includeDebug)
{
// Get the sections from the executable, if possible
var sections = pex?.SectionTable;