aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Nagao <aaronn192@yahoo.com>2020-10-16 11:35:18 -0700
committerGitHub <noreply@github.com>2020-10-16 11:35:18 -0700
commit619aeffbbaf06c264592a45c0ef94ebbc436f37f (patch)
tree1d1be4e0da313fabecf44a06a4406a7804f5c5f9
parentd5db9f94d96a31233155a151a4bf071f5ca0d15a (diff)
Remove print statement
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/profile/compiled/CompiledQueryProfile.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/query/profile/compiled/CompiledQueryProfile.java b/container-search/src/main/java/com/yahoo/search/query/profile/compiled/CompiledQueryProfile.java
index d3abbbe4097..c6b0f4a533b 100644
--- a/container-search/src/main/java/com/yahoo/search/query/profile/compiled/CompiledQueryProfile.java
+++ b/container-search/src/main/java/com/yahoo/search/query/profile/compiled/CompiledQueryProfile.java
@@ -180,8 +180,6 @@ public class CompiledQueryProfile extends AbstractComponent implements Cloneable
public final Object get(CompoundName name, Map<String, String> context, Properties substitution) {
ValueWithSource value = entries.get(name, context);
if (value == null) return null;
- if (name.last().equals("streams"))
- System.out.println(value);
return substitute(value.value(), context, substitution);
}