aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/searchdefinition/Index.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/java/com/yahoo/searchdefinition/Index.java')
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/Index.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/Index.java b/config-model/src/main/java/com/yahoo/searchdefinition/Index.java
index 59f97a7e535..1620c90acd1 100644
--- a/config-model/src/main/java/com/yahoo/searchdefinition/Index.java
+++ b/config-model/src/main/java/com/yahoo/searchdefinition/Index.java
@@ -51,9 +51,6 @@ public class Index implements Cloneable, Serializable {
/** Whether the content of this index is normalized */
private boolean normalized=true;
- /** The set of all searchable fields which should be searched with this index. May not null */
- public Set<String> matchGroup=new LinkedHashSet<>();
-
private Type type = Type.VESPA;
/** The boolean index definition, if set */
@@ -82,22 +79,6 @@ public class Index implements Cloneable, Serializable {
public Stemming getStemming() { return stemming; }
/**
- * Returns the (unmodifiable) set of searchable fields which should be searched
- * when this index is searched. This is useful to specify that some attributes should be
- * searched as well when an index is searched.
- * This set is either empty, or if set contains both the name of this index, and some other
- * indexes.
- */
- public Set<String> getMatchGroup() { return Collections.unmodifiableSet(matchGroup); }
-
- /** Adds a searchable field name to be searched when this index is searched */
- public void addToMatchGroup(String name) {
- if (name.equals(this.name)) return;
- if (matchGroup.size()==0) matchGroup.add(this.name);
- matchGroup.add(name);
- }
-
- /**
* Whether this field should be stemmed in this search definition,
* this is never null
*/