Disable state tracking on ReadyLocalTransaction
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / BatchedModificationsReply.java
index 3f179cf0019ac825781032588d678499e8b27061..29bb3e9ea623b77f6bc2dc7559af02828a883ae6 100644 (file)
@@ -44,16 +44,8 @@ public class BatchedModificationsReply extends VersionedExternalizableMessage {
         out.writeInt(numBatched);
     }
 
-    @Override
-    protected Object newLegacySerializedInstance() {
-        // no legacy serialized type for this class; return self
-        return this;
-    }
-
     @Override
     public String toString() {
-        StringBuilder builder = new StringBuilder();
-        builder.append("BatchedModificationsReply [numBatched=").append(numBatched).append("]");
-        return builder.toString();
+        return "BatchedModificationsReply [numBatched=" + numBatched + "]";
     }
 }