Make private methods static
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ThreePhaseCommitCohortProxy.java
index 9f94731b59a65370e0aa9bf7784e202aab9e992d..8d85bdcb666a24755a567db6fffa7d18c1fb9feb 100644 (file)
@@ -253,7 +253,7 @@ public class ThreePhaseCommitCohortProxy extends AbstractThreePhaseCommitCohort<
                 CommitTransactionReply.class, true, operationCallback);
     }
 
-    private boolean successfulFuture(ListenableFuture<Void> future) {
+    private static boolean successfulFuture(ListenableFuture<Void> future) {
         if(!future.isDone()) {
             return false;
         }