Prefer Multimap interface types over implementation types.

This change is required before the migration to MultimapBuilder can be
completed.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=141208944
This commit is contained in:
kak 2016-12-06 12:11:03 -08:00 committed by Ben McIlwain
parent f2faf49d58
commit c496f369c1
2 changed files with 3 additions and 2 deletions

View file

@ -37,7 +37,7 @@ public final class UriParameters {
*/
public static ListMultimap<String, String> parse(String query) {
checkNotNull(query);
ArrayListMultimap<String, String> map = ArrayListMultimap.create();
ListMultimap<String, String> map = ArrayListMultimap.create();
if (!query.isEmpty()) {
int start = 0;
while (start <= query.length()) {