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%2FAbortTransactionReply.java;h=3b58458e1a3dca93fd37ba97d01a05a64c26cc65;hb=refs%2Fchanges%2F03%2F84703%2F10;hp=ac65b5b4898ed9c72c6bd2a631a670f301889ed6;hpb=909831d806ef3b35358206559523f09716214e58;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/AbortTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/AbortTransactionReply.java index ac65b5b489..3b58458e1a 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/AbortTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/AbortTransactionReply.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 AbortTransactionReply extends VersionedExternalizableMessage { - private static final Object SERIALIZED_INSTANCE = - ThreePhaseCommitCohortMessages.AbortTransactionReply.newBuilder().build(); - private static final AbortTransactionReply INSTANCE = new AbortTransactionReply(); public AbortTransactionReply() { @@ -24,17 +20,11 @@ public class AbortTransactionReply extends VersionedExternalizableMessage { super(version); } - @Override - protected Object newLegacySerializedInstance() { - return SERIALIZED_INSTANCE; - } - public static AbortTransactionReply instance(short version) { return version == DataStoreVersions.CURRENT_VERSION ? INSTANCE : new AbortTransactionReply(version); } public static boolean isSerializedType(Object message) { - return message instanceof AbortTransactionReply || - message instanceof ThreePhaseCommitCohortMessages.AbortTransactionReply; + return message instanceof AbortTransactionReply; } }