From 20b5d3800417660cb8ea35886366af973d252417 Mon Sep 17 00:00:00 2001 From: jonmv Date: Fri, 8 Apr 2022 13:26:13 +0200 Subject: Fix typo --- config-lib/src/main/java/com/yahoo/config/PathNode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config-lib/src/main/java/com') diff --git a/config-lib/src/main/java/com/yahoo/config/PathNode.java b/config-lib/src/main/java/com/yahoo/config/PathNode.java index 03e6fb51086..ea4c657af8c 100644 --- a/config-lib/src/main/java/com/yahoo/config/PathNode.java +++ b/config-lib/src/main/java/com/yahoo/config/PathNode.java @@ -25,7 +25,7 @@ public class PathNode extends LeafNode { super(true); this.value = Path.of(fileReference.value()); if (value.normalize().toString().startsWith("..")) - throw new IllegalArgumentException("path may not start with '..', but got :" + value); + throw new IllegalArgumentException("path may not start with '..', but got: " + value); this.fileReference = fileReference; } -- cgit v1.2.3