aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2021-12-20 08:59:09 +0100
committerJon Marius Venstad <venstad@gmail.com>2021-12-20 08:59:09 +0100
commit2994e2a0f96e87d9428a156fe3263efab1f7a654 (patch)
treec3a567beeaeb47ddb1ee89d5c80f4fd448987505 /vespajlib
parenta744d811f50fb521c89810a705597b059348543f (diff)
Revert "Merge pull request #20578 from vespa-engine/revert-20568-jonmv/replace-optimaize-with-lingua"
This reverts commit 5476504932cd90eb2dad82dbab633e3ffa2034c3, reversing changes made to 235a78cc4707f78d18c6818a577de1b7507f5e40.
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/com/yahoo/tensor/TensorType.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/tensor/TensorType.java b/vespajlib/src/main/java/com/yahoo/tensor/TensorType.java
index 5b23d5d92ae..dfbcb06c365 100644
--- a/vespajlib/src/main/java/com/yahoo/tensor/TensorType.java
+++ b/vespajlib/src/main/java/com/yahoo/tensor/TensorType.java
@@ -1,7 +1,6 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.tensor;
-import com.google.common.collect.ImmutableList;
import com.yahoo.text.Ascii7BitMatcher;
import java.util.ArrayList;
@@ -86,7 +85,7 @@ public class TensorType {
private final Value valueType;
/** Sorted list of the dimensions of this */
- private final ImmutableList<Dimension> dimensions;
+ private final List<Dimension> dimensions;
private final TensorType mappedSubtype;
@@ -94,7 +93,7 @@ public class TensorType {
this.valueType = valueType;
List<Dimension> dimensionList = new ArrayList<>(dimensions);
Collections.sort(dimensionList);
- this.dimensions = ImmutableList.copyOf(dimensionList);
+ this.dimensions = List.copyOf(dimensionList);
if (dimensionList.stream().allMatch(d -> d.isIndexed()))
mappedSubtype = empty;