Remove deprecated DataExistsReply constructor 95/32395/2
authorTom Pantelis <tpanteli@brocade.com>
Tue, 12 Jan 2016 06:57:07 +0000 (01:57 -0500)
committerGerrit Code Review <gerrit@opendaylight.org>
Tue, 12 Jan 2016 18:04:41 +0000 (18:04 +0000)
The DataExistsReply was previously deprecated and is not in use so
remove it.

Change-Id: Ib1c184901be8070f70c14f4125fdfbefc59b541d
Signed-off-by: Tom Pantelis <tpanteli@brocade.com>
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java

index 0ea865aa07e06b8f201955d9bfcac61c27d83725..12a4600a4c28565e263868a17412c4e7cd847b2e 100644 (file)
@@ -27,15 +27,6 @@ public class DataExistsReply implements SerializableMessage {
         this.exists = exists;
     }
 
-    /**
-     * @deprecated Use {@link #create(boolean)} instead.
-     * @param exists
-     */
-    @Deprecated
-    public DataExistsReply(final boolean exists) {
-        this(exists, null);
-    }
-
     public static DataExistsReply create(final boolean exists) {
         return exists ? TRUE : FALSE;
     }