remove log invoke

This commit is contained in:
zhongchao
2022-08-01 14:43:47 +08:00
parent 4afe25ef3d
commit 72cb08d743
8 changed files with 0 additions and 12 deletions

View File

@@ -649,7 +649,6 @@ public class AMapViewWrapper implements IMogoMapView,
@Override
public void setCarLightsType(int type, int time) {
if (checkAMapView()) {
// Log.d("liyz", "AMapViewWrapper setCarLightsType type = " + type + "---time = " + time);
mMapView.getMapAutoViewHelper().setTailLightsType(type, time);
}
}

View File

@@ -257,7 +257,6 @@ public class MogoMapUIController implements IMogoMapUIController {
public void setCarLightsType(int type, int time) {
initDelegate();
if (mDelegate != null) {
// Log.d("liyz", "MogoMapUIController type = " + type + "---time = " + time);
mDelegate.setCarLightsType(type, time);
}
}

View File

@@ -223,7 +223,6 @@ public class AMapUIController implements IMogoMapUIController {
@Override
public void setCarLightsType(int type, int time) {
// Log.d("liyz", "AMapUIController type = " + type + "---time = " + time);
if (mClient != null) {
mClient.setCarLightsType(type, time);
}