Sprinkle java.io.Serial
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CommitTransactionReply.java
index 4207cd5877e756b9a6c198728a6cbc0fd0eb8e22..1dd8e8ec8f2f9d6c6ef486a0b67c4f8a0da98f84 100644 (file)
@@ -5,15 +5,13 @@
  * 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.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();
+    @java.io.Serial
+    private static final long serialVersionUID = -8342450250867395000L;
 
     public static final CommitTransactionReply INSTANCE = new CommitTransactionReply();
 
@@ -24,17 +22,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;
     }
 }