summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2020-08-18 15:51:07 +0200
committerGitHub <noreply@github.com>2020-08-18 15:51:07 +0200
commit6e16d2076bc576c7bd685a26cdec6f5ca0104245 (patch)
treeb0b0ce78a00b69ab479a61e0845c5af612be9b71
parentb084901fe3461f620667b488624a817f0cada335 (diff)
Add missing whitespace
-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;
}