Raise EOS unsuccessful request reporting to error
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / BatchedModificationsReply.java
index 33c5733fdb94199a04193a21d7e5bc5f2fc1c158..29bb3e9ea623b77f6bc2dc7559af02828a883ae6 100644 (file)
@@ -28,7 +28,6 @@ public class BatchedModificationsReply extends VersionedExternalizableMessage {
         this.numBatched = numBatched;
     }
 
-
     public int getNumBatched() {
         return numBatched;
     }
@@ -46,7 +45,7 @@ public class BatchedModificationsReply extends VersionedExternalizableMessage {
     }
 
     @Override
-    public Object toSerializable() {
-        return this;
+    public String toString() {
+        return "BatchedModificationsReply [numBatched=" + numBatched + "]";
     }
 }