BUG-5280: remove support for talking to pre-Boron clients
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CloseDataChangeListenerRegistrationReply.java
index faf73c87ebe4ef6bdb8926ccfc3742ecc86d9ebe..563b330b989267b88d8f078e5ff0def4761e1143 100644 (file)
@@ -8,14 +8,10 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
-import org.opendaylight.controller.protobuff.messages.registration.ListenerRegistrationMessages;
 
-public class CloseDataChangeListenerRegistrationReply implements SerializableMessage{
-  public static Class SERIALIZABLE_CLASS = ListenerRegistrationMessages.CloseDataChangeListenerRegistrationReply.class;
-
-  @Override
-  public Object toSerializable() {
-    return ListenerRegistrationMessages.CloseDataChangeListenerRegistrationReply.newBuilder().build();
-  }
+public class CloseDataChangeListenerRegistrationReply {
+    public static final CloseDataChangeListenerRegistrationReply INSTANCE = new CloseDataChangeListenerRegistrationReply();
 
+    private CloseDataChangeListenerRegistrationReply() {
+    }
 }