This commit is contained in:
Matt Nadareski
2025-10-30 12:06:42 -04:00
parent 705252eec7
commit f2d2fe97bb
2 changed files with 2 additions and 3 deletions

View File

@@ -4,7 +4,6 @@ using System.IO;
using System.Text;
using SabreTools.Data.Models.ISO9660;
using SabreTools.Data.Extensions;
using SabreTools.IO;
using SabreTools.IO.Extensions;
namespace SabreTools.Serialization.Wrappers
@@ -12,7 +11,7 @@ namespace SabreTools.Serialization.Wrappers
public partial class ISO9660 : IExtractable
{
/// <inheritdoc/>
public bool Extract(string outputDirectory, bool includeDebug)
public virtual bool Extract(string outputDirectory, bool includeDebug)
{
// If we have no volume or directory descriptors, there is nothing to extract
if (VolumeDescriptorSet.Length == 0 || DirectoryDescriptors.Count == 0)

View File

@@ -3,7 +3,7 @@ namespace SabreTools.Serialization.Wrappers
public partial class Skeleton : IExtractable
{
/// <inheritdoc/>
public new bool Extract(string outputDirectory, bool includeDebug)
public override bool Extract(string outputDirectory, bool includeDebug)
=> false;
}
}