mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
General cleanup and refactor.
This commit is contained in:
@@ -30,6 +30,8 @@
|
||||
// Copyright © 2011-2022 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
namespace Aaru.DiscImages;
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
@@ -38,8 +40,6 @@ using Aaru.CommonTypes.Enums;
|
||||
using Aaru.CommonTypes.Structs;
|
||||
using Schemas;
|
||||
|
||||
namespace Aaru.DiscImages;
|
||||
|
||||
public sealed partial class ZZZRawImage
|
||||
{
|
||||
/// <inheritdoc />
|
||||
@@ -264,8 +264,7 @@ public sealed partial class ZZZRawImage
|
||||
if(suffix == null)
|
||||
continue;
|
||||
|
||||
var tagStream = new FileStream(_basePath + suffix, FileMode.Create, FileAccess.ReadWrite,
|
||||
FileShare.None);
|
||||
var tagStream = new FileStream(_basePath + suffix, FileMode.Create, FileAccess.ReadWrite, FileShare.None);
|
||||
|
||||
tagStream.Write(tag.Value, 0, tag.Value.Length);
|
||||
tagStream.Close();
|
||||
|
||||
Reference in New Issue
Block a user