summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2019-01-09 15:34:17 +0100
committerJon Bratseth <bratseth@oath.com>2019-01-09 15:34:17 +0100
commit252445c222dc9a3405e97516853311b02798f613 (patch)
treea593694ddc4386a3a1390a863fe725751b014258
parent5de7f3963fa02cb33ba3dcdb08b2114d01e93588 (diff)
Remove commented out line
-rw-r--r--container-search/src/main/java/com/yahoo/search/Query.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/Query.java b/container-search/src/main/java/com/yahoo/search/Query.java
index 3159bfc4658..0d2c0c93035 100644
--- a/container-search/src/main/java/com/yahoo/search/Query.java
+++ b/container-search/src/main/java/com/yahoo/search/Query.java
@@ -429,7 +429,6 @@ public class Query extends com.yahoo.processing.Request implements Cloneable {
private void setPropertiesFromRequestMap(Map<String, String> requestMap, Properties properties) {
for (Map.Entry<String, String> entry : requestMap.entrySet()) {
try {
- //if (entry.getKey().equals("queryProfile")) continue;
properties.set(entry.getKey(), entry.getValue(), requestMap);
}
catch (IllegalArgumentException e) {