mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-14 21:36:36 +00:00
Override
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user