Clean SharedSchemaContextFactory up
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / impl / SchemaPathStack.java
index 0efcef2e71f9f1a26a450f9b429631f1838ec3b6..260bf7b6e09bdf7e18ab2f1f36a3228fb50963d4 100644 (file)
@@ -28,7 +28,7 @@ final class SchemaPathStack {
     QName removeNodeFromPath() {
         SchemaPath sp = paths.pop();
         QName ret = sp.getLastComponent();
-        paths.push(Preconditions.checkNotNull(sp.getParent(), "Attempted to remove too many nodes from schemapath at stack {}", paths));
+        paths.push(Preconditions.checkNotNull(sp.getParent(), "Attempted to remove too many nodes from schemapath at stack %s", paths));
         return ret;
     }