summaryrefslogtreecommitdiffstats
path: root/processing/src
diff options
context:
space:
mode:
Diffstat (limited to 'processing/src')
-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);
}