summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vespajlib/src/main/java/com/yahoo/tensor/functions/Reduce.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/tensor/functions/Reduce.java b/vespajlib/src/main/java/com/yahoo/tensor/functions/Reduce.java
index e5472209933..89e4ea865c2 100644
--- a/vespajlib/src/main/java/com/yahoo/tensor/functions/Reduce.java
+++ b/vespajlib/src/main/java/com/yahoo/tensor/functions/Reduce.java
@@ -128,7 +128,7 @@ public class Reduce<NAMETYPE extends Name> extends PrimitiveTensorFunction<NAMET
TensorType reducedType = outputType(argument.type(), dimensions);
// Reduce cells
- int [] indexesToKeep = createIndexesToKeep(argument.type(), dimensions);
+ int[] indexesToKeep = createIndexesToKeep(argument.type(), dimensions);
// TODO cells.size() is most likely an overestimate, and might need a better heuristic
// But the upside is larger than the downside.
Map<TensorAddress, ValueAggregator> aggregatingCells = new HashMap<>((int)argument.size());