mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
Member can be made private.
This commit is contained in:
@@ -40,8 +40,8 @@ namespace Aaru.Checksums;
|
|||||||
/// <summary>Implements a CRC64 algorithm</summary>
|
/// <summary>Implements a CRC64 algorithm</summary>
|
||||||
public sealed class Crc64Context : IChecksum
|
public sealed class Crc64Context : IChecksum
|
||||||
{
|
{
|
||||||
public const ulong CRC64_ECMA_POLY = 0xC96C5795D7870F42;
|
const ulong CRC64_ECMA_POLY = 0xC96C5795D7870F42;
|
||||||
public const ulong CRC64_ECMA_SEED = 0xFFFFFFFFFFFFFFFF;
|
const ulong CRC64_ECMA_SEED = 0xFFFFFFFFFFFFFFFF;
|
||||||
|
|
||||||
readonly ulong _finalSeed;
|
readonly ulong _finalSeed;
|
||||||
readonly ulong[] _table;
|
readonly ulong[] _table;
|
||||||
|
|||||||
@@ -96,7 +96,7 @@ public class Vfs : IDisposable
|
|||||||
CleanUp();
|
CleanUp();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CleanUp()
|
void CleanUp()
|
||||||
{
|
{
|
||||||
foreach(KeyValuePair<long, Stream> handle in _streamsCache) handle.Value.Close();
|
foreach(KeyValuePair<long, Stream> handle in _streamsCache) handle.Value.Close();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user