diff --git a/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs b/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs
index fb642ead..685d8360 100644
--- a/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs
+++ b/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs
@@ -398,7 +398,7 @@ namespace SabreTools.Serialization.Wrappers
// Try to find the section header
if (WiseSection != null)
- return ExtractWiseSection(outputDirectory, includeDebug, source);
+ return ExtractWiseSection(outputDirectory, includeDebug);
// Everything else could not extract
return false;
@@ -523,10 +523,8 @@ namespace SabreTools.Serialization.Wrappers
///
/// Output directory to write to
/// True to include debug data, false otherwise
- /// Potentially multi-part stream to read
- /// Wise section information
/// True if extraction succeeded, false otherwise
- private bool ExtractWiseSection(string outputDirectory, bool includeDebug, Stream source)
+ private bool ExtractWiseSection(string outputDirectory, bool includeDebug)
{
// Get the section header
var header = WiseSection;