Remove RevisionSourceIdentifier
[yangtools.git] / parser / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / repo / SourceIdMismatchDetector.java
index 070b18f1ab8670c8a1f000f6b7737ea8d873c0e9..65454fc63cb6b44dea7fcdb449e0f9ac7a2beb00 100644 (file)
@@ -45,7 +45,7 @@ final class SourceIdMismatchDetector implements Function<List<IRSchemaSource>, L
                 final SourceIdentifier expectedSId = srcIt.next();
                 if (!expectedSId.equals(realSId)) {
                     LOG.warn("Source identifier mismatch for module \"{}\", requested as {} but actually is {}. "
-                        + "Using actual id", expectedSId.getName(), expectedSId, realSId);
+                        + "Using actual id", expectedSId.name().getLocalName(), expectedSId, realSId);
                 }
             }