From dde4d538bb12b3e5e0ed0e5ae64f36e40fa2560a Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Tue, 26 May 2020 12:11:22 +0200 Subject: [PATCH] Fix an error message typo We are missing a space here, making it hard to decode what the source is. Fix that. Change-Id: Ic9e18f88e3b59e19cd2cd5a529c29276ed9cab06 Signed-off-by: Robert Varga (cherry picked from commit 66bc339442b0c700079df770b9f3840e328e722c) --- .../yang/model/repo/util/AbstractSchemaRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yang/yang-model-util/src/main/java/org/opendaylight/yangtools/yang/model/repo/util/AbstractSchemaRepository.java b/yang/yang-model-util/src/main/java/org/opendaylight/yangtools/yang/model/repo/util/AbstractSchemaRepository.java index e0b1a2e0a9..816731ad57 100644 --- a/yang/yang-model-util/src/main/java/org/opendaylight/yangtools/yang/model/repo/util/AbstractSchemaRepository.java +++ b/yang/yang-model-util/src/main/java/org/opendaylight/yangtools/yang/model/repo/util/AbstractSchemaRepository.java @@ -91,7 +91,7 @@ public abstract class AbstractSchemaRepository implements SchemaRepository, Sche sources.get(id); if (srcs == null) { return immediateFailedFluentFuture(new MissingSchemaSourceException( - "No providers registered for source" + id, id)); + "No providers registered for source " + id, id)); } sortedSchemaSourceRegistrations = Lists.newArrayList(srcs.get(representation)); -- 2.36.6