Fix an error message typo
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / repo / util / AbstractSchemaRepository.java
index e0b1a2e0a989fb25023a1f7139257146e047c567..816731ad579564899275c84270573cef964eb30a 100644 (file)
@@ -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));