mirror of
https://github.com/google/nomulus
synced 2026-09-18 22:14:23 +00:00
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:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user