diff --git a/SabreTools.Serialization/Wrappers/ISO9660.Extraction.cs b/SabreTools.Serialization/Wrappers/ISO9660.Extraction.cs index 13ff77c4..0a1a3476 100644 --- a/SabreTools.Serialization/Wrappers/ISO9660.Extraction.cs +++ b/SabreTools.Serialization/Wrappers/ISO9660.Extraction.cs @@ -2,8 +2,8 @@ using System; using System.Collections.Generic; using System.IO; using System.Text; -using SabreTools.Data.Models.ISO9660; using SabreTools.Data.Extensions; +using SabreTools.Data.Models.ISO9660; using SabreTools.IO.Extensions; namespace SabreTools.Serialization.Wrappers @@ -146,7 +146,7 @@ namespace SabreTools.Serialization.Wrappers var directoryName = Path.GetDirectoryName(filename); if (directoryName != null && !Directory.Exists(directoryName)) Directory.CreateDirectory(directoryName); - + // Check that the output file doesn't already exist if (File.Exists(filename) || Directory.Exists(filename)) { diff --git a/SabreTools.Serialization/Wrappers/ISO9660.Printing.cs b/SabreTools.Serialization/Wrappers/ISO9660.Printing.cs index f0f0ffbb..f8c906f8 100644 --- a/SabreTools.Serialization/Wrappers/ISO9660.Printing.cs +++ b/SabreTools.Serialization/Wrappers/ISO9660.Printing.cs @@ -459,7 +459,7 @@ namespace SabreTools.Serialization.Wrappers builder.AppendLine(" File Extent"); if (ear == null) return; - + builder.AppendLineBothEndian(ear.OwnerIdentification, " Owner Identification"); builder.AppendLineBothEndian(ear.OwnerIdentification, " Group Identification");