Bump cds-access-api ABIVersion
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / ExistsTransactionSuccess.java
index 5f081c77cd50686e3c3f48109654440cc5425d5a..8a1704de763725d3e2aaa0a2aad8baba43c00f36 100644 (file)
@@ -13,7 +13,7 @@ import org.opendaylight.controller.cluster.access.ABIVersion;
 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
 
 /**
- * Successuful reply to an {@link ExistsTransactionRequest}. It indicates presence of requested data via
+ * Successful reply to an {@link ExistsTransactionRequest}. It indicates presence of requested data via
  * {@link #getExists()}.
  *
  * @author Robert Varga
@@ -24,12 +24,7 @@ public final class ExistsTransactionSuccess extends TransactionSuccess<ExistsTra
     private final boolean exists;
 
     public ExistsTransactionSuccess(final TransactionIdentifier target, final long sequence, final boolean exists) {
-        this(target, sequence, 0, exists);
-    }
-
-    ExistsTransactionSuccess(final TransactionIdentifier target, final long sequence, final long retry,
-            final boolean exists) {
-        super(target, sequence, retry);
+        super(target, sequence);
         this.exists = exists;
     }