From: Tom Pantelis Date: Tue, 12 Jan 2016 06:57:07 +0000 (-0500) Subject: Remove deprecated DataExistsReply constructor X-Git-Tag: release/beryllium~30 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=f36285090c8125003ea7848598ce1c91125ec849;p=controller.git Remove deprecated DataExistsReply constructor The DataExistsReply was previously deprecated and is not in use so remove it. Change-Id: Ib1c184901be8070f70c14f4125fdfbefc59b541d Signed-off-by: Tom Pantelis --- diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java index 0ea865aa07..12a4600a4c 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DataExistsReply.java @@ -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; }