summaryrefslogtreecommitdiffstats
path: root/container-search
diff options
context:
space:
mode:
authorArne Juul <arnej@vespa.ai>2024-02-22 10:34:29 +0000
committerArne Juul <arnej@vespa.ai>2024-02-22 10:36:21 +0000
commit9188a9872e0d579eac26df42af131bd65ea625e6 (patch)
treeefb12210a8dce7e18ebb291230a269f4eee75862 /container-search
parent97eff1f15dcafe4a8d0229fa36b3e0448de2f4d6 (diff)
drop debug print
Diffstat (limited to 'container-search')
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java b/container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java
index ea2120dae3f..537ffd05463 100644
--- a/container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java
+++ b/container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java
@@ -42,13 +42,6 @@ public class RankProfileInputProperties extends Properties {
if (RankFeatures.isFeatureName(name.toString())) {
try {
var expectedType = typeOf(name);
- System.err.println("setting rank feature '" + name + "' -> " + value + " :: " + value.getClass());
- if (expectedType != null && expectedType.declaredString()) {
- System.err.println("expected type: declared string");
- var e = new IllegalArgumentException("foo");
- e.fillInStackTrace();
- e.printStackTrace();
- }
if (expectedType != null && ! expectedType.declaredString()) {
value = tensorConverter.convertTo(expectedType.tensorType(),
name.last(),