summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/serialization/MixedBinaryFormat.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/main/java/com/yahoo/tensor/serialization/MixedBinaryFormat.java')
-rw-r--r--vespajlib/src/main/java/com/yahoo/tensor/serialization/MixedBinaryFormat.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/tensor/serialization/MixedBinaryFormat.java b/vespajlib/src/main/java/com/yahoo/tensor/serialization/MixedBinaryFormat.java
index edebc9acdd6..bdb46e4661e 100644
--- a/vespajlib/src/main/java/com/yahoo/tensor/serialization/MixedBinaryFormat.java
+++ b/vespajlib/src/main/java/com/yahoo/tensor/serialization/MixedBinaryFormat.java
@@ -78,8 +78,8 @@ class MixedBinaryFormat implements BinaryFormat {
buffer.putInt1_4Bytes(denseSubspaces.size());
}
for (var subspace : denseSubspaces) {
- for (int index = 0; index < subspace.sparseAddr.size(); index++) {
- buffer.putUtf8String(subspace.sparseAddr.label(index));
+ for (int index = 0; index < subspace.sparseAddress.size(); index++) {
+ buffer.putUtf8String(subspace.sparseAddress.label(index));
}
for (double val : subspace.cells) {
consumer.accept(val);