Fix teh build
This commit is contained in:
parent
8cd7156023
commit
26dd4c86d6
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ namespace SearchBox
|
||||||
{
|
{
|
||||||
public class InvertedIndex
|
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()
|
public InvertedIndex()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue