6.1.0 - 变更包名 新增投影媒体权限开关/tasks模块 扩展内置模块方法 重构内置模块及构建脚本

This commit is contained in:
SuperMonster003
2022-05-26 19:18:16 +08:00
parent e0374a835e
commit f68ad1c993
770 changed files with 15821 additions and 14759 deletions

View File

@@ -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) {