删除无用类

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2022-01-20 19:04:53 +08:00
parent 7e50aeb1ee
commit 088b293f23
28 changed files with 2 additions and 907 deletions

View File

@@ -1,49 +0,0 @@
package com.mogo.service.module;
import com.alibaba.android.arouter.facade.template.IProvider;
import com.mogo.eagle.core.data.map.MogoLatLng;
/**
* @author zyz
* 2020-01-12.
* <p>
* Deprecated, use {@link IMogoSearchManager} instead."
*/
@Deprecated
public interface IMogoAddressManager extends IProvider {
/**
* 回家
*/
@Deprecated
void goHome();
/**
* 去公司
*/
@Deprecated
void goCompany();
/**
* 打开搜索
*/
@Deprecated
void goSearch();
/**
* 规划路线
*
* @param destination 目的地
*/
@Deprecated
void calculatePath( MogoLatLng destination );
/**
* 分类搜索
*/
@Deprecated
void categorySearch( String category );
@Deprecated
void goSettings();
}