aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java')
-rw-r--r--container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java b/container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java
index d5e4eb75931..a5f83021bee 100644
--- a/container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java
+++ b/container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java
@@ -90,27 +90,6 @@ public abstract class DocsumField {
return name;
}
- public boolean isCompressed(ByteBuffer b) {
- return false;
- }
-
- /**
- * Decode the field at the current buffer position into the fast hit.
- */
- public abstract Object decode(ByteBuffer b, FastHit hit);
-
- /**
- * Decode the field at the current buffer position and simply return the
- * value.
- */
- public abstract Object decode(ByteBuffer b);
-
- /**
- * Get the number of bytes this field occupies in the given buffer
- * AND SET(!) the position to the first byte after this field.
- */
- public abstract int getLength(ByteBuffer b);
-
/**
* Convert a generic value into an object of the appropriate type
* for this field.