Fix an error message typo 57/89957/1
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 26 May 2020 10:11:22 +0000 (12:11 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 26 May 2020 12:03:42 +0000 (14:03 +0200)
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 <robert.varga@pantheon.tech>
(cherry picked from commit 66bc339442b0c700079df770b9f3840e328e722c)

yang/yang-model-util/src/main/java/org/opendaylight/yangtools/yang/model/repo/util/AbstractSchemaRepository.java

index f6f4a8f9071098c5be7c24035569dad00c7d6488..72bbab6819dab3878f21bf428b803e3b33ae17a0 100644 (file)
@@ -90,7 +90,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));