summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2020-08-18 15:51:07 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2020-08-27 10:46:16 +0200
commitfdb2c9d6739a5fc0e73a542f4a693cee7d3f7bdb (patch)
treefc5da0c95519a64ada85ba2c8f347b9a17f55b42 /config-model
parent7afb78f196e0b011e602f3ac1c25d79177f1d4e4 (diff)
Add missing whitespace
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/component/BindingPattern.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/component/BindingPattern.java b/config-model/src/main/java/com/yahoo/vespa/model/container/component/BindingPattern.java
index c8b9d3293a7..1d5736ba7e2 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/component/BindingPattern.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/component/BindingPattern.java
@@ -46,7 +46,7 @@ public abstract class BindingPattern implements Comparable<BindingPattern> {
private static String validatePath(String path) {
Objects.requireNonNull(path, "Path must be specified");
- if (!path.startsWith("/")) throw new IllegalArgumentException("Path must have '/' as prefix:" + path);
+ if (!path.startsWith("/")) throw new IllegalArgumentException("Path must have '/' as prefix: " + path);
return path;
}