Fix protection level of SimpleIndex type
ln.build - build0.waldrennach.l--n.de build job pending Details

master 1.0.1
Harald Wolff 2021-01-12 15:09:30 +01:00
parent 434a6971b6
commit ab10627bba
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ using System.Text;
namespace ln.objects.index
{
class SimpleIndex<T> : Index
public class SimpleIndex<T> : Index
{
BTreeValueSet<T, Guid> index = new BTreeValueSet<T, Guid>();
BTree<Guid, T> reverseIndex = new BTree<Guid, T>();

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Authors>Harald Wolff-Thobaben</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>