X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2Fclient%2Fmessages%2FFindLeaderReply.java;h=b4b34437e844e7d160fbc7e4e7c77388172d334c;hb=b4bf55727093657662d8c16a50fa85f87978a586;hp=90cec9db6c1ca479be13730ef2f410c1500e0976;hpb=9d4ff4c4045fdef38e3940d336d2825df29c4d65;p=controller.git diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/client/messages/FindLeaderReply.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/client/messages/FindLeaderReply.java index 90cec9db6c..b4b34437e8 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/client/messages/FindLeaderReply.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/client/messages/FindLeaderReply.java @@ -5,13 +5,12 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ - package org.opendaylight.controller.cluster.raft.client.messages; import com.google.common.annotations.VisibleForTesting; import java.io.Serializable; import java.util.Optional; -import javax.annotation.Nullable; +import org.eclipse.jdt.annotation.Nullable; /** * Reply to {@link FindLeader} message, containing the address of the leader actor, as known to the raft actor which @@ -26,7 +25,7 @@ public final class FindLeaderReply implements Serializable { private static final long serialVersionUID = 1L; private final String leaderActor; - public FindLeaderReply(@Nullable final String leaderActor) { + public FindLeaderReply(final @Nullable String leaderActor) { this.leaderActor = leaderActor; }