Fix teh build

This commit is contained in:
Starbeamrainbowlabs 2018-09-02 18:46:28 +01:00
parent 8cd7156023
commit 26dd4c86d6
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ namespace SearchBox
{
public class InvertedIndex
{
private ConcurrentDictionary<string, ConcurrentDictionary<int, List<int>>> invertedIndex = new Dictionary<string, Dictionary<int, List<int>>>();
private ConcurrentDictionary<string, ConcurrentDictionary<int, List<int>>> invertedIndex = new ConcurrentDictionary<string, ConcurrentDictionary<int, List<int>>>();
public InvertedIndex()
{