aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Tests/ConsistencyTests/TextIndexing/WordIndex.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Tests/ConsistencyTests/TextIndexing/WordIndex.cs')
-rw-r--r--MediaBrowser.Tests/ConsistencyTests/TextIndexing/WordIndex.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/MediaBrowser.Tests/ConsistencyTests/TextIndexing/WordIndex.cs b/MediaBrowser.Tests/ConsistencyTests/TextIndexing/WordIndex.cs
deleted file mode 100644
index e0af08792..000000000
--- a/MediaBrowser.Tests/ConsistencyTests/TextIndexing/WordIndex.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace MediaBrowser.Tests.ConsistencyTests.TextIndexing
-{
- public class WordIndex : Dictionary<string, WordOccurrences>
- {
- public WordIndex() : base(StringComparer.InvariantCultureIgnoreCase)
- {
- }
-
- public void AddWordOccurrence(string word, string fileName, string fullPath, int lineNumber, int wordIndex)
- {
- WordOccurrences current;
- if (!this.TryGetValue(word, out current))
- {
- current = new WordOccurrences();
- this[word] = current;
- }
-
- current.AddOccurrence(fileName, fullPath, lineNumber, wordIndex);
- }
-
- public WordOccurrences Find(string word)
- {
- WordOccurrences found;
- if (this.TryGetValue(word, out found))
- {
- return found;
- }
-
- return null;
- }
-
- }
-}