6.1.0 - 变更包名 新增投影媒体权限开关/tasks模块 扩展内置模块方法 重构内置模块及构建脚本
This commit is contained in:
@@ -6,13 +6,12 @@ import java.util.Map;
|
||||
/**
|
||||
* Created by Stardust on 2017/1/26.
|
||||
*/
|
||||
|
||||
public class MapBuilder<K, V> {
|
||||
|
||||
private Map<K, V> mMap;
|
||||
private final Map<K, V> mMap;
|
||||
|
||||
public MapBuilder() {
|
||||
this(new HashMap<K, V>());
|
||||
this(new HashMap<>());
|
||||
}
|
||||
|
||||
public MapBuilder(Map<K, V> map) {
|
||||
|
||||
Reference in New Issue
Block a user