BUG-8372: fix AbstractProxyTransaction.replayMessages()
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / databroker / actors / dds / GetClientRequest.java
index 4bfd1c4a601ef92d9b531c41e7d6c320efa56d43..db9142474720fea4b37d8cc55a85e686afc5a14f 100644 (file)
@@ -11,18 +11,18 @@ import akka.actor.ActorRef;
 import com.google.common.base.Preconditions;
 
 /**
- * Request the ClientIdentifier from a particular actor. Response is an instance of {@link DistributedDataStoreClient}.
+ * Request the ClientIdentifier from a particular actor. Response is an instance of {@link DataStoreClient}.
  *
  * @author Robert Varga
  */
 final class GetClientRequest {
     private final ActorRef replyTo;
 
-    public GetClientRequest(final ActorRef replyTo) {
+    GetClientRequest(final ActorRef replyTo) {
         this.replyTo = Preconditions.checkNotNull(replyTo);
     }
 
     ActorRef getReplyTo() {
         return replyTo;
     }
-}
\ No newline at end of file
+}