Fix remaining CS warnings in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / databroker / actors / dds / GetClientRequest.java
index 4bfd1c4a601ef92d9b531c41e7d6c320efa56d43..2b6785496ebee2b7e2d4b78e7a5beb71d3cc2469 100644 (file)
@@ -18,11 +18,11 @@ import com.google.common.base.Preconditions;
 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
+}