Merge "SubmitStrategy: Remove unused Arguments#batchUpdateFactory"

This commit is contained in:
David Pursehouse
2017-05-15 23:28:46 +00:00
committed by Gerrit Code Review

View File

@@ -103,7 +103,6 @@ public abstract class SubmitStrategy {
final AccountCache accountCache; final AccountCache accountCache;
final ApprovalsUtil approvalsUtil; final ApprovalsUtil approvalsUtil;
final BatchUpdate.Factory batchUpdateFactory;
final ChangeControl.GenericFactory changeControlFactory; final ChangeControl.GenericFactory changeControlFactory;
final ChangeMerged changeMerged; final ChangeMerged changeMerged;
final ChangeMessagesUtil cmUtil; final ChangeMessagesUtil cmUtil;
@@ -143,7 +142,6 @@ public abstract class SubmitStrategy {
Arguments( Arguments(
AccountCache accountCache, AccountCache accountCache,
ApprovalsUtil approvalsUtil, ApprovalsUtil approvalsUtil,
BatchUpdate.Factory batchUpdateFactory,
ChangeControl.GenericFactory changeControlFactory, ChangeControl.GenericFactory changeControlFactory,
ChangeMerged changeMerged, ChangeMerged changeMerged,
ChangeMessagesUtil cmUtil, ChangeMessagesUtil cmUtil,
@@ -176,7 +174,6 @@ public abstract class SubmitStrategy {
@Assisted boolean dryrun) { @Assisted boolean dryrun) {
this.accountCache = accountCache; this.accountCache = accountCache;
this.approvalsUtil = approvalsUtil; this.approvalsUtil = approvalsUtil;
this.batchUpdateFactory = batchUpdateFactory;
this.changeControlFactory = changeControlFactory; this.changeControlFactory = changeControlFactory;
this.changeMerged = changeMerged; this.changeMerged = changeMerged;
this.mergedSenderFactory = mergedSenderFactory; this.mergedSenderFactory = mergedSenderFactory;