mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Upgrade to .NET 6.
This commit is contained in:
@@ -112,7 +112,7 @@ namespace Aaru.Filesystems.LisaFS
|
||||
return error;
|
||||
|
||||
int offset = 0;
|
||||
List<CatalogEntryV2> catalogV2 = new List<CatalogEntryV2>();
|
||||
List<CatalogEntryV2> catalogV2 = new();
|
||||
|
||||
// For each entry on the catalog
|
||||
while(offset + 54 < buf.Length)
|
||||
@@ -206,7 +206,7 @@ namespace Aaru.Filesystems.LisaFS
|
||||
|
||||
ulong nextCatalogPointer = BigEndianBitConverter.ToUInt32(firstCatalogBlock, 0x7FA);
|
||||
|
||||
List<byte[]> catalogBlocks = new List<byte[]>
|
||||
List<byte[]> catalogBlocks = new()
|
||||
{
|
||||
firstCatalogBlock
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user