Separate out ModificationApplyOperation.verifyStructure()
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / LeafSetEntryModificationStrategy.java
index a11856ccdb29cf29236d033d73c44285e3714367..e364dde8ea0ec7164756d8405982126e4a133195 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.yangtools.yang.data.impl.schema.tree;
 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode;
 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
 
-final class LeafSetEntryModificationStrategy extends ValueNodeModificationStrategy<LeafListSchemaNode> {
+final class LeafSetEntryModificationStrategy extends AbstractValueNodeModificationStrategy<LeafListSchemaNode> {
     @SuppressWarnings({ "unchecked", "rawtypes" })
     LeafSetEntryModificationStrategy(final LeafListSchemaNode schema) {
         super(schema, (Class) LeafSetEntryNode.class);