mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-28 15:56:49 +00:00
Replace use of java.util.HashMap with android.support.v4.util.ArrayMap.
Note: I could not use android.util.ArrayMap as it is a final class. Change-Id: I1314961885dfbaa427cb830bdbd3d1f494be63d2 Bug: 62466540
This commit is contained in:
@@ -16,13 +16,13 @@
|
||||
|
||||
package com.android.launcher3.util;
|
||||
|
||||
import android.support.v4.util.ArrayMap;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
||||
/**
|
||||
* A utility map from keys to an ArrayList of values.
|
||||
*/
|
||||
public class MultiHashMap<K, V> extends HashMap<K, ArrayList<V>> {
|
||||
public class MultiHashMap<K, V> extends ArrayMap<K, ArrayList<V>> {
|
||||
|
||||
public MultiHashMap() { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user