[fix]添加备注,删除无用log

This commit is contained in:
xinfengkun
2022-03-17 10:25:23 +08:00
parent afec70680f
commit 3c45f2f98d
2 changed files with 4 additions and 1 deletions

View File

@@ -182,8 +182,10 @@ public class AdasManager implements IAdasNetCommApi {
/**
* 向工控机发送关机命令
* 目前提供的账号没有关机权限
*/
@Override
@Deprecated
public void shutdownIPC() {
if (mChannel != null) {
mChannel.shutdownIPC();
@@ -192,8 +194,10 @@ public class AdasManager implements IAdasNetCommApi {
/**
* 向工控机发送重启命令
* 目前提供的账号没有重启权限
*/
@Override
@Deprecated
public void rebootIPC() {
if (mChannel != null) {
mChannel.rebootIPC();

View File

@@ -223,7 +223,6 @@ public class FpgaSocket implements IWebSocket {
@Override
public void onMessage(@NonNull WebSocket webSocket, @NonNull String text) {
super.onMessage(webSocket, text);
CupidLogUtils.i(TAG, "WebSocket onMessage text= " + text);
if (TextUtils.isEmpty(text)) {
return;
}