Adjust to yangtools-2.0.0/odlparent-3.0.0 changes
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / util / NetconfTopologyRPCProvider.java
index c963022e06d7c00820fac5e6b792b6695117ef9b..0c5810aa1e4fef153e376c8306a45e9e230c3599 100644 (file)
@@ -61,7 +61,7 @@ public class NetconfTopologyRPCProvider implements NetconfNodeTopologyService {
         final NetconfNode node = this.encryptPassword(input);
         final SettableFuture<RpcResult<Void>> futureResult = SettableFuture.create();
         final NodeId nodeId = new NodeId(input.getNodeId());
-        writeToConfigDS(node, nodeId, topologyId, futureResult);
+        writeToConfigDS(node, nodeId, futureResult);
         return futureResult;
     }
 
@@ -91,7 +91,7 @@ public class NetconfTopologyRPCProvider implements NetconfNodeTopologyService {
         return credentials;
     }
 
-    private void writeToConfigDS(final NetconfNode node, final NodeId nodeId, final String topologyId,
+    private void writeToConfigDS(final NetconfNode node, final NodeId nodeId,
                                  final SettableFuture<RpcResult<Void>> futureResult) {
 
         final WriteTransaction writeTransaction = dataBroker.newWriteOnlyTransaction();