X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fdom%2Fbroker%2Futil%2FYangDataOperations.xtend;h=d80e405b4e05dc7df3bd9ed5c9de3610644e7b18;hb=efa5be8f930f3eda7094c314e22347868b9db173;hp=1e89281df498b34d82bea1f3e6b08574c0941a06;hpb=2c7c9ef5e517de98e0d740f938762cc746dbcde1;p=controller.git diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/util/YangDataOperations.xtend b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/util/YangDataOperations.xtend index 1e89281df4..d80e405b4e 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/util/YangDataOperations.xtend +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/util/YangDataOperations.xtend @@ -38,12 +38,6 @@ class YangDataOperations { throw new IllegalArgumentException("Supplied node is not data node container."); } - private def static checkConfigurational(DataSchemaNode node, boolean config) { - if (config) { - checkArgument(node.configuration, "Supplied composite node is not configurational."); - } - } - private static dispatch def Iterable> mergeMultiple(LeafSchemaNode node, List> original, List> modified, boolean configurational) { checkArgument(original.size === 1);