aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/Index.java
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-04-12 17:27:29 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2021-04-12 17:27:29 +0200
commit46fbe7ef9881309092b5cc844d5f348b9d6cf596 (patch)
tree113617a91e1f40ef50db4f2979a9bf45bfdb7ac5 /container-search/src/main/java/com/yahoo/prelude/Index.java
parent60e36e0f69c9f52b21a147871a74742840b4e778 (diff)
Only consider isLowerCase.
Diffstat (limited to 'container-search/src/main/java/com/yahoo/prelude/Index.java')
-rw-r--r--container-search/src/main/java/com/yahoo/prelude/Index.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/container-search/src/main/java/com/yahoo/prelude/Index.java b/container-search/src/main/java/com/yahoo/prelude/Index.java
index 8915c4b42f0..306c7c80577 100644
--- a/container-search/src/main/java/com/yahoo/prelude/Index.java
+++ b/container-search/src/main/java/com/yahoo/prelude/Index.java
@@ -23,31 +23,11 @@ import java.util.Set;
*/
public class Index {
- public static class Attribute {
-
- private boolean tokenizedContent = false;
- public final String name;
-
- public Attribute(String name) {
- this.name = name;
- }
-
- public boolean isTokenizedContent() {
- return tokenizedContent;
- }
-
- public void setTokenizedContent(boolean tokenizedContent) {
- this.tokenizedContent = tokenizedContent;
- }
- }
-
/** The null index - don't use this for name lookups */
public static final Index nullIndex = new Index("(null)");
private final String name;
- private String type; // TODO: Parse to a type object; do not expose this as a string
-
private final List<String> aliases = new ArrayList<>();
// The state resulting from adding commands to this (using addCommand)