Skip to content

Commit c9f1cd9

Browse files
committed
socket
1 parent eac8156 commit c9f1cd9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

socket/src/main/java/info/xiaomo/chat/socket/MyWebSocket.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package info.xiaomo.chat.socket;
22

3-
import info.xiaomo.core.untils.StringUtil;
3+
import info.xiaomo.core.untils.HtmlUtil;
44
import info.xiaomo.core.untils.TimeUtil;
55
import org.slf4j.Logger;
66
import org.slf4j.LoggerFactory;
@@ -19,11 +19,11 @@
1919
* いま 最高の表現 として 明日最新の始発..~
2020
* Today the best performance as tomorrow newest starter!
2121
* Created by IntelliJ IDEA.
22-
*
22+
* <p>
2323
* author: xiaomo
2424
* github: https://github.com/xiaomoinfo
2525
* email: xiaomo@xiaomo.info
26-
26+
* <p>
2727
* Date: 2016/11/3 16:36
2828
* Description: 用户实体类
2929
* Copyright(©) 2015 by xiaomo.
@@ -97,7 +97,7 @@ public void onMessage(String message) throws IOException {
9797
for (MyWebSocket item : webSocketSet) {
9898
item.sendMessage(date + message);
9999
}
100-
LOGGER.info("客户端消息:{}", StringUtil.delHTMLTag(message));
100+
LOGGER.info("客户端消息:{}", HtmlUtil.delHTMLTag(message));
101101
}
102102

103103
/**

0 commit comments

Comments
 (0)