mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
General code cleanup and style refactor.
This commit is contained in:
@@ -30,13 +30,13 @@
|
||||
// Copyright © 2011-2022 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
namespace Aaru.DiscImages;
|
||||
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Aaru.CommonTypes.Interfaces;
|
||||
using Aaru.Helpers;
|
||||
|
||||
namespace Aaru.DiscImages;
|
||||
|
||||
public sealed partial class BlindWrite4
|
||||
{
|
||||
/// <inheritdoc />
|
||||
@@ -48,7 +48,7 @@ public sealed partial class BlindWrite4
|
||||
if(stream.Length < 19)
|
||||
return false;
|
||||
|
||||
var signature = new byte[19];
|
||||
byte[] signature = new byte[19];
|
||||
stream.EnsureRead(signature, 0, 19);
|
||||
|
||||
return _bw4Signature.SequenceEqual(signature);
|
||||
|
||||
Reference in New Issue
Block a user