kotlin 化

Signed-off-by: 董宏宇 <martindhy@gmail.com>
This commit is contained in:
董宏宇
2021-09-16 17:35:28 +08:00
parent 38184b9f89
commit b6a2009d18
2 changed files with 21 additions and 16 deletions

View File

@@ -2,6 +2,7 @@ package com.mogo.module.hmi.warning;
import android.content.Context;
import android.os.Bundle;
import android.util.Log;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
@@ -108,4 +109,9 @@ public class MoGoWarningProvider implements IMoGoWaringProvider {
public void showWarning(@NonNull WarningDirectionEnum direction, long closeTime) {
mMoGoWarningFragment.showWarning(direction, closeTime);
}
@Override
public void onDestroy() {
Log.d(TAG, "onDestroy");
}
}