just to save some fucking works

This commit is contained in:
hyb1996
2017-05-14 19:46:51 +08:00
parent a4c6eb6cee
commit 36ef8c8396
22 changed files with 491 additions and 258 deletions

View File

@@ -1,5 +1,6 @@
package com.stardust.util;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;
@@ -12,7 +13,7 @@ public class MapEntries<K, V> {
private Map<K, V> mMap;
public MapEntries() {
this(new TreeMap<K, V>());
this(new HashMap<K, V>());
}
public MapEntries(Map<K, V> map) {