Remove stray unused injected field in ContactDeleteFlow

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=135406351
This commit is contained in:
mcilwain 2016-10-06 14:36:57 -07:00 committed by Ben McIlwain
parent 129cbe8103
commit d4e4333c2e

View file

@ -26,7 +26,6 @@ import com.google.common.base.Function;
import com.google.common.base.Optional;
import com.google.common.collect.ImmutableSet;
import com.googlecode.objectify.Key;
import google.registry.config.ConfigModule.Config;
import google.registry.flows.EppException;
import google.registry.flows.FlowModule.ClientId;
import google.registry.flows.FlowModule.TargetId;
@ -41,7 +40,6 @@ import google.registry.model.eppcommon.StatusValue;
import google.registry.model.eppoutput.EppOutput;
import google.registry.model.reporting.HistoryEntry;
import javax.inject.Inject;
import org.joda.time.Duration;
/**
* An EPP flow that deletes a contact.
@ -76,7 +74,6 @@ public final class ContactDeleteFlow extends LoggedInFlow implements Transaction
@Inject @ClientId String clientId;
@Inject @TargetId String targetId;
@Inject Optional<AuthInfo> authInfo;
@Inject @Config("asyncDeleteFlowMapreduceDelay") Duration mapreduceDelay;
@Inject HistoryEntry.Builder historyBuilder;
@Inject ContactDeleteFlow() {}