Madan Jampani

Remove redundant thenApply call in TransactionCoordiantor

Change-Id: I96d8a06ddef7b1bd9068a589bfa780e82c5dd556
......@@ -53,7 +53,7 @@ public class TransactionCoordinator {
: transactions.put(transactionId, Transaction.State.ROLLINGBACK)
.thenCompose(v -> doRollback(transactionParticipants))
.thenApply(v -> null))
.thenCompose(v -> transactions.remove(transactionId).thenApply(u -> null))
.thenCompose(v -> transactions.remove(transactionId))
.thenApply(v -> null);
}
......