From 26dd4c86d6f8bf321d765c46349c384508b4bba7 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 2 Sep 2018 18:46:28 +0100 Subject: [PATCH] Fix teh build --- SearchBox/InvertedIndex.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SearchBox/InvertedIndex.cs b/SearchBox/InvertedIndex.cs index f31e413..baa7c1f 100644 --- a/SearchBox/InvertedIndex.cs +++ b/SearchBox/InvertedIndex.cs @@ -6,7 +6,7 @@ namespace SearchBox { public class InvertedIndex { - private ConcurrentDictionary>> invertedIndex = new Dictionary>>(); + private ConcurrentDictionary>> invertedIndex = new ConcurrentDictionary>>(); public InvertedIndex() {