From f898d551e421c7d5844a67a30efc30b7e70744a4 Mon Sep 17 00:00:00 2001 From: nickfelt Date: Fri, 11 Mar 2016 12:35:14 -0800 Subject: [PATCH] Remove unneeded type params in EppResourceInput nested classes ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=116997558 --- .../domain/registry/mapreduce/EppResourceInputs.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/java/com/google/domain/registry/mapreduce/EppResourceInputs.java b/java/com/google/domain/registry/mapreduce/EppResourceInputs.java index 5e2ff8f1c..90af7122b 100644 --- a/java/com/google/domain/registry/mapreduce/EppResourceInputs.java +++ b/java/com/google/domain/registry/mapreduce/EppResourceInputs.java @@ -97,7 +97,7 @@ public class EppResourceInputs { } /** Base class for {@link Input} classes that map over {@link EppResourceIndex}. */ - private abstract static class BaseInput extends Input { + private abstract static class BaseInput extends Input { private static final long serialVersionUID = -6681886718929462122L; @@ -117,7 +117,7 @@ public class EppResourceInputs { /** * A MapReduce {@link Input} that loads all {@link EppResourceIndex} entities. */ - private static class IndexInput extends BaseInput { + private static class IndexInput extends BaseInput { private static final long serialVersionUID = -1231269296567279059L; @@ -128,7 +128,7 @@ public class EppResourceInputs { } /** A MapReduce {@link Input} that loads all {@link EppResource} objects of a given type. */ - private static class EntityInput extends BaseInput { + private static class EntityInput extends BaseInput { private static final long serialVersionUID = 8162607479124406226L; @@ -150,7 +150,7 @@ public class EppResourceInputs { * *

When mapping over keys we can't distinguish between Objectify polymorphic types. */ - private static class KeyInput extends BaseInput> { + private static class KeyInput extends BaseInput> { private static final long serialVersionUID = -5426821384707653743L;