mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 14:55:11 +00:00
Comments cleanup
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user