X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FLeaderLocalDelegateFactory.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FLeaderLocalDelegateFactory.java;h=af57577c4d37bc08eb5ebd7df92bdd2df2663b31;hp=b6fb127714f07b8529de25bc1760dd7c16532f91;hb=3859df9beca8f13f1ff2b2744ed3470a1715bec3;hpb=083a04543a96ae862c48ccb4aaefc667f19d9f1e;ds=sidebyside diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LeaderLocalDelegateFactory.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LeaderLocalDelegateFactory.java index b6fb127714..af57577c4d 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LeaderLocalDelegateFactory.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/LeaderLocalDelegateFactory.java @@ -7,11 +7,12 @@ */ package org.opendaylight.controller.cluster.datastore; +import static java.util.Objects.requireNonNull; + import akka.actor.ActorPath; import akka.actor.ActorRef; import akka.actor.ActorSelection; import akka.actor.Props; -import com.google.common.base.Preconditions; /** * Base class for factories instantiating delegates which are local to the @@ -24,7 +25,7 @@ abstract class LeaderLocalDelegateFactory { private final Shard shard; protected LeaderLocalDelegateFactory(final Shard shard) { - this.shard = Preconditions.checkNotNull(shard); + this.shard = requireNonNull(shard); } protected final ActorRef getSelf() { @@ -47,11 +48,11 @@ abstract class LeaderLocalDelegateFactory { return shard.getContext().actorOf(props); } - protected final ActorSelection selectActor(ActorRef ref) { + protected final ActorSelection selectActor(final ActorRef ref) { return shard.getContext().system().actorSelection(ref.path()); } - protected final ActorSelection selectActor(ActorPath path) { + protected final ActorSelection selectActor(final ActorPath path) { return shard.getContext().system().actorSelection(path); }