fix import extra separations
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / device / DeviceTransactionManager.java
index 871363917fdabc8cfd38fee28b246f41f4819b88..1dbc128c9c274dc37b603ce7ced1a0df22cb31fa 100644 (file)
@@ -11,7 +11,6 @@ package org.opendaylight.transportpce.common.device;
 import java.util.Optional;
 import java.util.concurrent.Future;
 import java.util.concurrent.TimeUnit;
-
 import org.opendaylight.mdsal.binding.api.MountPoint;
 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
 import org.opendaylight.yangtools.yang.binding.DataObject;
@@ -132,14 +131,15 @@ public interface DeviceTransactionManager {
     Future<Optional<DeviceTransaction>> getDeviceTransaction(String deviceId, long timeoutToSubmit, TimeUnit timeUnit);
 
     // TODO make private in impl
-    @Deprecated
     Optional<MountPoint> getDeviceMountPoint(String deviceId);
 
     /**
      * Returns data from device from specified path. Creates new device transaction, gets data via it and closes
      * transaction.
      *
+     * <p>
      * This method is blocking - it's waiting until it receives {@link DeviceTransaction} and then the data from device.
+     * </p>
      *
      * @param deviceId Device identifier from which will be data read.
      * @param logicalDatastoreType Datastore type.