Bump MRI upstreams
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / transactions / BatchedExistenceCheck.java
index b3b9d862eeebeecf5be73ea5ddc39f5d520a1928..001793033cbecc274c28321244b550c61e514a3e 100644 (file)
@@ -37,9 +37,9 @@ final class BatchedExistenceCheck {
 
     static BatchedExistenceCheck start(final DOMDataTreeReadOperations tx,
                                        final LogicalDatastoreType datastore, final YangInstanceIdentifier parentPath,
-                                       final Collection<? extends NormalizedNode<?, ?>> children) {
+                                       final Collection<? extends NormalizedNode> children) {
         final BatchedExistenceCheck ret = new BatchedExistenceCheck(children.size());
-        for (NormalizedNode<?, ?> child : children) {
+        for (NormalizedNode child : children) {
             final YangInstanceIdentifier path = parentPath.node(child.getIdentifier());
             tx.exists(datastore, path).addCallback(new FutureCallback<Boolean>() {
                 @Override