summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-05-10 23:40:43 +0200
committerJon Bratseth <bratseth@oath.com>2018-05-10 23:40:43 +0200
commit837e33533ba3c109aeb48f2cfcc10d0b28a8a1b8 (patch)
tree8d675b966ea8b7461f484a400ac7d9d8adf7d0cd /container-search/src/main/java/com/yahoo/prelude/fastsearch/DocsumField.java
parente9bc22ad954be93f431cd261a203f520b2d2318c (diff)
Remove some dead code
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.