Skip to content

Commit

Permalink
internal
Browse files Browse the repository at this point in the history
  • Loading branch information
2A5F committed Dec 29, 2023
1 parent 0345485 commit c1cf4ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BetterCollections/BetterCollections.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.3.0</Version>
<Version>0.3.1</Version>
<PackageProjectUrl>https://github.com/libsugar/BetterCollections</PackageProjectUrl>
<Description>Some better collection implementations than the standard library</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
2 changes: 1 addition & 1 deletion BetterCollections/Cryptography/AHasher/AHasher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c1cf4ac

Please sign in to comment.