Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / sal-netconf-connector / src / main / java / org / opendaylight / controller / sal / connect / api / RemoteDeviceCommunicator.java
@@ -7,11 +7,10 @@
  */
 package org.opendaylight.controller.sal.connect.api;
 
+import com.google.common.util.concurrent.ListenableFuture;
 import org.opendaylight.yangtools.yang.common.QName;
 import org.opendaylight.yangtools.yang.common.RpcResult;
 
-import com.google.common.util.concurrent.ListenableFuture;
-
 public interface RemoteDeviceCommunicator<M> extends AutoCloseable {
 
     ListenableFuture<RpcResult<M>> sendRequest(M message, QName rpc);