mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Use Array.Empty<T>.
This commit is contained in:
@@ -1765,7 +1765,7 @@ namespace Aaru.DiscImages
|
||||
|
||||
var cmpCrc64Context = new Crc64Context();
|
||||
|
||||
byte[] lzmaProperties = new byte[0];
|
||||
byte[] lzmaProperties = Array.Empty<byte>();
|
||||
|
||||
switch(_currentBlockHeader.compression)
|
||||
{
|
||||
@@ -2498,7 +2498,7 @@ namespace Aaru.DiscImages
|
||||
|
||||
var cmpCrc64Context = new Crc64Context();
|
||||
|
||||
byte[] lzmaProperties = new byte[0];
|
||||
byte[] lzmaProperties = Array.Empty<byte>();
|
||||
|
||||
if(_currentBlockHeader.compression == CompressionType.Flac)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user