summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorArne Juul <arnej@yahoo-inc.com>2018-11-16 14:11:50 +0000
committergjoranv <gv@oath.com>2019-01-21 15:09:27 +0100
commit94b60e62b6b4876bf1aa7f8abc27e0387163f306 (patch)
treed58c30e51edaaac4bc95945a2ec609f792cdbbb5 /config-model
parent34f9f65301aaf8e28724f9a05fae52d5e490f6eb (diff)
GC dead code
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/document/SDField.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/document/SDField.java b/config-model/src/main/java/com/yahoo/searchdefinition/document/SDField.java
index 38a4b641fd4..8b523211471 100644
--- a/config-model/src/main/java/com/yahoo/searchdefinition/document/SDField.java
+++ b/config-model/src/main/java/com/yahoo/searchdefinition/document/SDField.java
@@ -83,9 +83,6 @@ public class SDField extends Field implements TypedKey, FieldOperationContainer,
/** The explicitly index settings on this field */
private Map<String, Index> indices = new java.util.LinkedHashMap<>();
- /** True if body or header is set explicitly for this field */
- private boolean headerOrBodyDefined = false;
-
private boolean idOverride = false;
/** Struct fields defined in this field */
@@ -769,15 +766,6 @@ public class SDField extends Field implements TypedKey, FieldOperationContainer,
return queryCommands;
}
-
- public boolean isHeaderOrBodyDefined() {
- return headerOrBodyDefined;
- }
-
- public void setHeaderOrBodyDefined(boolean headerOrBodySetExplicitly) {
- this.headerOrBodyDefined = headerOrBodySetExplicitly;
- }
-
/**
* The document that this field was declared in, or null
*