Remove SuccessReply 91/109491/2
authorRobert Varga <robert.varga@pantheon.tech>
Sat, 30 Dec 2023 20:40:18 +0000 (21:40 +0100)
committerRobert Varga <nite@hq.sk>
Sun, 31 Dec 2023 04:10:03 +0000 (04:10 +0000)
This message is not used, remove it.

Change-Id: I23c9be05063d7ed92779e4fb66904a0fd848062d
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/SuccessReply.java [deleted file]

diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/SuccessReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/SuccessReply.java
deleted file mode 100644 (file)
index 2fe7cb9..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * 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 java.io.Serializable;
-
-/**
- * A reply message indicating success.
- *
- * @author Thomas Pantelis
- */
-@Deprecated(since = "8.0.5", forRemoval = true)
-public final class SuccessReply implements Serializable {
-    private static final long serialVersionUID = 1L;
-
-    public static final SuccessReply INSTANCE = new SuccessReply();
-
-    private SuccessReply() {
-    }
-}