Bug 1014 - Non-configuration items in the model appear in the config
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / LeafModificationStrategy.java
index e5f07c65b0f29a5c5781e6b2055c4d6e99fe1118..250991154dd22543ea8726b161c3e930cb80dcf0 100644 (file)
@@ -8,11 +8,12 @@
 package org.opendaylight.yangtools.yang.data.impl.schema.tree;
 
 import org.opendaylight.yangtools.yang.data.api.schema.LeafNode;
+import org.opendaylight.yangtools.yang.data.api.schema.tree.TreeType;
 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
 
 final class LeafModificationStrategy extends AbstractValueNodeModificationStrategy<LeafSchemaNode> {
     @SuppressWarnings({ "unchecked", "rawtypes" })
-    LeafModificationStrategy(final LeafSchemaNode schema) {
+    LeafModificationStrategy(final LeafSchemaNode schema, final TreeType treeType) {
         super(schema, (Class) LeafNode.class);
     }
 }
\ No newline at end of file