BUG-1014: Moved recursive verify of written data to ready()
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / OrderedMapModificationStrategy.java
index 6febd4e5cecf64577b2d7c324683f09af4d2b333..15db353a484153e3fe7631b97c55be6cda48d03e 100644 (file)
@@ -15,7 +15,7 @@ final class OrderedMapModificationStrategy extends AbstractNodeContainerModifica
     private final Optional<ModificationApplyOperation> entryStrategy;
 
     OrderedMapModificationStrategy(final ListSchemaNode schema, final TreeType treeType) {
-        super(OrderedMapNode.class);
+        super(OrderedMapNode.class, treeType);
         entryStrategy = Optional.<ModificationApplyOperation> of(new ListEntryModificationStrategy(schema, treeType));
     }