X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FCommitTransactionReply.java;h=cd3a13a9f7a8d8a4948cc5d0b1d3395c45b4e44b;hb=50a2f5eb1c94650bc1be1e49d3a5382a1a74a9b3;hp=4207cd5877e756b9a6c198728a6cbc0fd0eb8e22;hpb=909831d806ef3b35358206559523f09716214e58;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CommitTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CommitTransactionReply.java index 4207cd5877..cd3a13a9f7 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CommitTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CommitTransactionReply.java @@ -9,12 +9,8 @@ package org.opendaylight.controller.cluster.datastore.messages; import org.opendaylight.controller.cluster.datastore.DataStoreVersions; -import org.opendaylight.controller.protobuff.messages.cohort3pc.ThreePhaseCommitCohortMessages; public class CommitTransactionReply extends VersionedExternalizableMessage { - private static final Object SERIALIZED_INSTANCE = - ThreePhaseCommitCohortMessages.CommitTransactionReply.newBuilder().build(); - public static final CommitTransactionReply INSTANCE = new CommitTransactionReply(); public CommitTransactionReply() { @@ -24,17 +20,11 @@ public class CommitTransactionReply extends VersionedExternalizableMessage { super(version); } - @Override - protected Object newLegacySerializedInstance() { - return SERIALIZED_INSTANCE; - } - public static CommitTransactionReply instance(short version) { return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new CommitTransactionReply(version); } public static boolean isSerializedType(Object message) { - return message instanceof CommitTransactionReply || - message instanceof ThreePhaseCommitCohortMessages.CommitTransactionReply; + return message instanceof CommitTransactionReply; } }