mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Refactor] Use collection expressions.
This commit is contained in:
@@ -266,12 +266,7 @@ public sealed partial class Qcow2
|
||||
|
||||
_writingStream.Seek((long)(refBlockOffset + refCountBlockIndex), SeekOrigin.Begin);
|
||||
|
||||
_writingStream.Write(new byte[]
|
||||
{
|
||||
0, 1
|
||||
},
|
||||
0,
|
||||
2);
|
||||
_writingStream.Write([0, 1], 0, 2);
|
||||
|
||||
ErrorMessage = "";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user