Comments cleanup

This commit is contained in:
Matt Nadareski
2025-08-29 07:54:20 -04:00
parent 54cf0a6470
commit 4473edf476
3 changed files with 2 additions and 4 deletions

View File

@@ -85,8 +85,6 @@ namespace ExtractionTool
return;
}
// TODO: When extractable wrapper types are exposed to this, use them instead of guessing
// Get the file type
WrapperType ft = WrapperFactory.GetFileType(magic, extension);
var wrapper = WrapperFactory.CreateWrapper(ft, stream);
@@ -243,7 +241,6 @@ namespace ExtractionTool
Console.WriteLine("Extracting New Executable contents");
Console.WriteLine();
// TODO: Add Wise installer handling here
nex.Extract(outputDirectory, includeDebug);
}
@@ -285,7 +282,6 @@ namespace ExtractionTool
Console.WriteLine("Extracting Portable Executable contents");
Console.WriteLine();
// TODO: Add Wise installer handling here
pex.Extract(outputDirectory, includeDebug);
}

View File

@@ -402,6 +402,7 @@ namespace SabreTools.Serialization.Wrappers
public bool Extract(string outputDirectory, bool includeDebug)
{
bool overlay = ExtractFromOverlay(outputDirectory, includeDebug);
// TODO: Add Wise installer handling here
return overlay;
}

View File

@@ -1093,6 +1093,7 @@ namespace SabreTools.Serialization.Wrappers
bool cexe = ExtractCExe(outputDirectory, includeDebug);
bool overlay = ExtractFromOverlay(outputDirectory, includeDebug);
bool resources = ExtractFromResources(outputDirectory, includeDebug);
// TODO: Add Wise installer handling here
return cexe || overlay || resources;
}