Merge "Bug 7891: Add ssh feature to netconf-netty-util"
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / NetconfNodeManager.java
index a33953291f60c333369efbbe1adb47bcc0f25bbe..bb623a92da180ae746c0ec56cb6968fb7cb9d926 100644 (file)
@@ -14,7 +14,6 @@ import akka.util.Timeout;
 import java.util.Collection;
 import javax.annotation.Nonnull;
 import org.opendaylight.controller.md.sal.binding.api.ClusteredDataTreeChangeListener;
-import org.opendaylight.controller.md.sal.binding.api.DataBroker;
 import org.opendaylight.controller.md.sal.binding.api.DataObjectModification;
 import org.opendaylight.controller.md.sal.binding.api.DataTreeIdentifier;
 import org.opendaylight.controller.md.sal.binding.api.DataTreeModification;
@@ -81,9 +80,11 @@ class NetconfNodeManager
                     break;
                 case WRITE:
                     if (rootNode.getDataBefore() != null) {
-                        LOG.debug("{}: Operational for node {} rewrited. Trying to register slave mount point", id, nodeId);
+                        LOG.debug("{}: Operational for node {} rewrited. Trying to register slave mount point",
+                                id, nodeId);
                     } else {
-                        LOG.debug("{}: Operational for node {} created. Trying to register slave mount point", id, nodeId);
+                        LOG.debug("{}: Operational for node {} created. Trying to register slave mount point",
+                                id, nodeId);
                     }
                     handleSlaveMountPoint(rootNode);
                     break;