summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/IndexFacts.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-search/src/main/java/com/yahoo/prelude/IndexFacts.java')
-rw-r--r--container-search/src/main/java/com/yahoo/prelude/IndexFacts.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/container-search/src/main/java/com/yahoo/prelude/IndexFacts.java b/container-search/src/main/java/com/yahoo/prelude/IndexFacts.java
index 90194f3ba6a..92ce6abb319 100644
--- a/container-search/src/main/java/com/yahoo/prelude/IndexFacts.java
+++ b/container-search/src/main/java/com/yahoo/prelude/IndexFacts.java
@@ -15,6 +15,9 @@ import java.util.TreeSet;
import static com.yahoo.text.Lowercase.toLowerCase;
/**
+ * NOTE: We are in the process of moving the functionality of this over to {@link com.yahoo.search.schema.SchemaInfo} -
+ * see if you can use that before adding usage of this.
+ *
* A central repository for information about indices. Standard usage is
*
* <pre><code>
@@ -24,9 +27,7 @@ import static com.yahoo.text.Lowercase.toLowerCase;
*
* @author Steinar Knutsen
*/
-// TODO: We should replace this with a better representation of search definitions
-// which is immutable, models clusters and search definitions inside clusters properly,
-// and uses better names. -bratseth
+// TODO: Complete migration to SchemaInfo
public class IndexFacts {
private Map<String, List<String>> clusterByDocument;