Rework NormalizedNode type hierarchy
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / spi / SimpleContainerNode.java
index d5a7c581f9530f27784cb1a39a43eff9333f3e13..ec086d2c124aa702619ac4cc6c9c6c6a44b64960 100644 (file)
@@ -15,7 +15,7 @@ import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
  * A container node which has not seen a modification. All nodes underneath it share the same subtree version.
  */
 final class SimpleContainerNode extends AbstractContainerNode {
-    protected SimpleContainerNode(final NormalizedNode<?, ?> data, final Version version) {
+    protected SimpleContainerNode(final NormalizedNode data, final Version version) {
         super(data, version);
     }