[add] 删除无用代码;解决互相引用引起的内存泄露;解决弹框重复

This commit is contained in:
liujing
2021-09-28 10:50:17 +08:00
parent 0a4d2f5f04
commit 4a4522a92e
8 changed files with 86 additions and 209 deletions

View File

@@ -10,7 +10,7 @@ import com.mogo.eagle.core.function.call.base.CallerBase;
/**
* @author xiaoyuzhou
* @date 2021/9/17 8:26 下午
*
* <p>
* HMI 调用者管理这里对外及其他模块提供功能的调用用啥写啥不要过度设计不允许直接将Provider暴露出去
*/
public class CallerCheckManager extends CallerBase {
@@ -56,7 +56,7 @@ public class CallerCheckManager extends CallerBase {
/**
* 指标监测
*/
public static boolean checkMonitor(Context context) {
return getCheckProvider().checkMonitor(context);
public static void checkMonitor(Context context) {
getCheckProvider().checkMonitor(context);
}
}