Rename ActorContext to ActorUtils
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / LocalTransactionChain.java
index 11b45137c392d37b39e071d60f20afa63c101be1..66109835a7fd5f91dce45a2593f1babe3eb53a2c 100644 (file)
@@ -104,12 +104,12 @@ final class LocalTransactionChain extends AbstractSnapshotBackedTransactionChain
 
         protected LocalChainThreePhaseCommitCohort(SnapshotBackedWriteTransaction<TransactionIdentifier> transaction,
                 DataTreeModification modification, Exception operationError) {
-            super(parent.getActorContext(), leader, transaction, modification, operationError);
+            super(parent.getActorUtils(), leader, transaction, modification, operationError);
         }
 
         protected LocalChainThreePhaseCommitCohort(SnapshotBackedWriteTransaction<TransactionIdentifier> transaction,
                 Exception operationError) {
-            super(parent.getActorContext(), leader, transaction, operationError);
+            super(parent.getActorUtils(), leader, transaction, operationError);
         }
 
         @Override