Member can be made private.

This commit is contained in:
2024-11-12 06:21:00 +00:00
parent 419ce11128
commit dda17fc1f9
2 changed files with 3 additions and 3 deletions

View File

@@ -40,8 +40,8 @@ namespace Aaru.Checksums;
/// <summary>Implements a CRC64 algorithm</summary>
public sealed class Crc64Context : IChecksum
{
public const ulong CRC64_ECMA_POLY = 0xC96C5795D7870F42;
public const ulong CRC64_ECMA_SEED = 0xFFFFFFFFFFFFFFFF;
const ulong CRC64_ECMA_POLY = 0xC96C5795D7870F42;
const ulong CRC64_ECMA_SEED = 0xFFFFFFFFFFFFFFFF;
readonly ulong _finalSeed;
readonly ulong[] _table;

View File

@@ -96,7 +96,7 @@ public class Vfs : IDisposable
CleanUp();
}
public void CleanUp()
void CleanUp()
{
foreach(KeyValuePair<long, Stream> handle in _streamsCache) handle.Value.Close();