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%2Fmessages%2FReadyTransactionReply.java;h=282e23ed3bab4458ef771b338d6bf03861536662;hp=eee489177a5d1496b78bd47a8bf873d959082e06;hb=6a4c3c11f68c52d00d2bc7f0b30b086113ebe859;hpb=43f5c8e686ccb3a5b196d3d64721cb4ec86ee3d1 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java index eee489177a..282e23ed3b 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java @@ -17,7 +17,6 @@ public class ReadyTransactionReply implements SerializableMessage { private final String cohortPath; public ReadyTransactionReply(String cohortPath) { - this.cohortPath = cohortPath; } @@ -27,8 +26,9 @@ public class ReadyTransactionReply implements SerializableMessage { @Override public ShardTransactionMessages.ReadyTransactionReply toSerializable() { - return ShardTransactionMessages.ReadyTransactionReply.newBuilder(). - setActorPath(cohortPath).build(); + return ShardTransactionMessages.ReadyTransactionReply.newBuilder() + .setActorPath(cohortPath) + .build(); } public static ReadyTransactionReply fromSerializable(Object serializable) {