summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/serialization/BinaryFormat.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/main/java/com/yahoo/tensor/serialization/BinaryFormat.java')
-rw-r--r--vespajlib/src/main/java/com/yahoo/tensor/serialization/BinaryFormat.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/tensor/serialization/BinaryFormat.java b/vespajlib/src/main/java/com/yahoo/tensor/serialization/BinaryFormat.java
index 9b0ccdcb6c8..f3adf63739a 100644
--- a/vespajlib/src/main/java/com/yahoo/tensor/serialization/BinaryFormat.java
+++ b/vespajlib/src/main/java/com/yahoo/tensor/serialization/BinaryFormat.java
@@ -4,7 +4,6 @@ package com.yahoo.tensor.serialization;
import com.google.common.annotations.Beta;
import com.yahoo.io.GrowableByteBuffer;
import com.yahoo.tensor.Tensor;
-import com.yahoo.tensor.TensorType;
/**
* Representation of a specific binary format with functions for serializing a Tensor object into
@@ -22,10 +21,7 @@ interface BinaryFormat {
/**
* Deserialize the given binary data into a Tensor object.
- *
- * @param type the expected abstract type of the tensor to serialize
- * @param buffer the buffer containing the tensor binary data
*/
- Tensor decode(TensorType type, GrowableByteBuffer buffer);
+ Tensor decode(GrowableByteBuffer buffer);
}