Remove unnecessary Dagger qualifier

The @JsonPayload qualifier is not used because the field are contrustor injected.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=222829281
This commit is contained in:
jianglai 2018-11-26 08:29:02 -08:00
parent d20b83c820
commit 4598c5f105

View file

@ -35,7 +35,7 @@ public final class JsonActionRunner {
Map<String, ?> handleJsonRequest(Map<String, ?> json); Map<String, ?> handleJsonRequest(Map<String, ?> json);
} }
@JsonPayload Map<String, Object> payload; Map<String, Object> payload;
JsonResponse response; JsonResponse response;
@Inject public JsonActionRunner(@JsonPayload Map<String, Object> payload, JsonResponse response) { @Inject public JsonActionRunner(@JsonPayload Map<String, Object> payload, JsonResponse response) {