[change] 删除空格

This commit is contained in:
xinfengkun
2022-06-22 17:36:34 +08:00
committed by liujing
parent c745c2bc06
commit 2f1b417ae3

View File

@@ -163,7 +163,7 @@ public class FpgaSocket implements IWebSocket {
public boolean sendDataWebSocket(ByteString data) {
if (mWebSocket != null) {
boolean result = mWebSocket.send(data);
CupidLogUtils.i(TAG, "WebSocket send ByteString= " + ByteUtil.byteArrToHex(data.toByteArray()) + ", result= " + result);
CupidLogUtils.i(TAG, "WebSocket send ByteString=" + ByteUtil.byteArrToHex(data.toByteArray()) + ", result= " + result);
return result;
}
return false;