remove log and change the beauty func cover

This commit is contained in:
zhongchao
2022-08-16 14:32:57 +08:00
parent fcc83d87ff
commit 9da2169326

View File

@@ -21,7 +21,7 @@ object IdentifyFactory : Identify {
private var identify: Identify? = null
init {
identify = if (AppIdentityModeUtils.isBus(FunctionBuildConfig.appIdentityMode)) {
identify = if (FunctionBuildConfig.isBeautyMode) {
UserIdentify.beautifyDataDrawer
} else {
DriverIdentify.originDataDrawer
@@ -41,13 +41,11 @@ object IdentifyFactory : Identify {
if(identify is IdentifyBeautifyDataDrawer){
identify!!.clearOldMarker()
identify = DriverIdentify.originDataDrawer
Log.d("0816arrow","set origin")
}
}else{
if(identify is IdentifyOriginDataDrawer){
identify!!.clearOldMarker()
identify = UserIdentify.beautifyDataDrawer
Log.d("0816arrow","set beauty")
}
}
when(msg.what){