Delete the useless MapreduceAction interface

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=122630519
This commit is contained in:
Corey Goldfeder 2016-05-18 07:51:21 -07:00 committed by Justine Tunney
parent 6f4b059cc9
commit 68b75461db
10 changed files with 9 additions and 42 deletions

View file

@ -34,7 +34,6 @@ import com.googlecode.objectify.Key;
import com.googlecode.objectify.Ref;
import com.googlecode.objectify.Work;
import google.registry.mapreduce.MapreduceAction;
import google.registry.mapreduce.MapreduceRunner;
import google.registry.mapreduce.inputs.EppResourceInputs;
import google.registry.mapreduce.inputs.NullInput;
@ -59,7 +58,7 @@ import javax.inject.Inject;
* A mapreduce to delete the specified EPP resource, but ONLY if it is not referred to by any
* existing DomainBase entity.
*/
public abstract class DeleteEppResourceAction<T extends EppResource> implements MapreduceAction {
public abstract class DeleteEppResourceAction<T extends EppResource> implements Runnable {
/** The HTTP parameter name used to specify the websafe key of the resource to delete. */
public static final String PARAM_RESOURCE_KEY = "resourceKey";