summaryrefslogtreecommitdiffstats
path: root/processing
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-10-18 13:53:23 +0200
committerJon Bratseth <bratseth@verizonmedia.com>2019-10-18 13:53:23 +0200
commitb24c9357bffd09f89973b68c9c554a247feb75bb (patch)
treee2acf4797b2c276109265c34723296486bc33c52 /processing
parent4331d28a447b57d0918078897757540fa06354b7 (diff)
Allow old style select with query profile types
Diffstat (limited to 'processing')
-rw-r--r--processing/src/main/java/com/yahoo/processing/request/Properties.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/processing/src/main/java/com/yahoo/processing/request/Properties.java b/processing/src/main/java/com/yahoo/processing/request/Properties.java
index 5a6131e2245..250e7214881 100644
--- a/processing/src/main/java/com/yahoo/processing/request/Properties.java
+++ b/processing/src/main/java/com/yahoo/processing/request/Properties.java
@@ -212,8 +212,8 @@ public class Properties implements Cloneable {
* @throws RuntimeException if no instance in the chain accepted this name-value pair
*/
public void set(CompoundName name, Object value, Map<String, String> context) {
- if (chained == null) throw new RuntimeException("Property '" + name + "->" + value +
- "' was not accepted in this property chain");
+ if (chained == null) throw new RuntimeException("Property '" + name + "->" +
+ value + "' was not accepted in this property chain");
chained.set(name, value, context);
}