From c1cf4acb964ec735f01c248f5489ce03566fb8b7 Mon Sep 17 00:00:00 2001 From: U2A5F Date: Fri, 29 Dec 2023 17:32:13 +0800 Subject: [PATCH] internal --- BetterCollections/BetterCollections.csproj | 2 +- BetterCollections/Cryptography/AHasher/AHasher.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BetterCollections/BetterCollections.csproj b/BetterCollections/BetterCollections.csproj index db8b909..fcf9c58 100644 --- a/BetterCollections/BetterCollections.csproj +++ b/BetterCollections/BetterCollections.csproj @@ -5,7 +5,7 @@ 12.0 enable true - 0.3.0 + 0.3.1 https://github.com/libsugar/BetterCollections Some better collection implementations than the standard library README.md diff --git a/BetterCollections/Cryptography/AHasher/AHasher.cs b/BetterCollections/Cryptography/AHasher/AHasher.cs index bab7e9c..8b2d954 100644 --- a/BetterCollections/Cryptography/AHasher/AHasher.cs +++ b/BetterCollections/Cryptography/AHasher/AHasher.cs @@ -26,7 +26,7 @@ public static AHasherRandomState GlobalRandomState get => _globalRandomState; } - public static readonly AHasherRandomState _globalRandomState = GenerateRandomState(); + internal static readonly AHasherRandomState _globalRandomState = GenerateRandomState(); [ThreadStatic] private static AHasherRandomState _threadCurrentRandomState;