BUG-997 Fix unused argument in SchemaResolutionException
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / api / SchemaResolutionException.java
index 23a69a278b4729fd8615b4b140d9e4569343433a..42b9d3802e137b3f6be5d71cb58ab3833d8ab98b 100644 (file)
@@ -40,7 +40,7 @@ public class SchemaResolutionException extends SchemaSourceException {
 
     public SchemaResolutionException(final @Nonnull String message, final Collection<SourceIdentifier> resolvedSources,
             final @Nonnull Multimap<SourceIdentifier, ModuleImport> unsatisfiedImports) {
-        this(message, null, Collections.<SourceIdentifier>emptySet(), unsatisfiedImports);
+        this(message, null, resolvedSources, unsatisfiedImports);
     }
 
     public SchemaResolutionException(final @Nonnull String message, final Throwable cause,