summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2020-08-19 11:57:17 +0200
committerGitHub <noreply@github.com>2020-08-19 11:57:17 +0200
commit083b2791064e114ebf2465a2a149a98e210ad7be (patch)
treee6691cd9713efe1ff6d880371418ece3cb8f8005
parent4fa221b7c20f492de0433b9b812f1cc509a18d97 (diff)
Revert "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 1d5736ba7e2..c8b9d3293a7 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;
}