mirror of
https://github.com/google/nomulus.git
synced 2025-07-25 03:58:34 +02: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:
parent
f2faf49d58
commit
c496f369c1
2 changed files with 3 additions and 2 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue