Improve LocalProxyTransaction.doExists()
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / SuccessReply.java
index ace731e1de99eb132e71cafc8e199b5a9aa077f8..4f74bda43e5dfd9f9e4306e7511f90de811e57da 100644 (file)
@@ -14,8 +14,11 @@ import java.io.Serializable;
  *
  * @author Thomas Pantelis
  */
-public class SuccessReply implements Serializable {
+public final class SuccessReply implements Serializable {
     private static final long serialVersionUID = 1L;
 
     public static final SuccessReply INSTANCE = new SuccessReply();
+
+    private SuccessReply() {
+    }
 }