From 851f434e1e3f8d8b8115a00276a76a39500d3518 Mon Sep 17 00:00:00 2001 From: liyd-b Date: Tue, 27 Jun 2023 16:44:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8E=BB=E9=99=A4=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=EF=BC=88sout=EF=BC=89=EF=BC=8C=E7=83=A6?= =?UTF-8?q?=E8=AF=B7=E4=BD=9C=E8=80=85=E9=80=9A=E8=BF=87pr=E5=93=88?= =?UTF-8?q?=EF=BC=8C=E8=AF=81=E6=98=8E=E6=88=91=E4=B9=9F=E6=98=AF=E4=B8=80?= =?UTF-8?q?=E5=90=8Dcontributor=20=20=E5=93=88=E5=93=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/abin/mallchat/custom/chat/controller/ChatController.java | 1 - 1 file changed, 1 deletion(-) diff --git a/mallchat-custom-server/src/main/java/com/abin/mallchat/custom/chat/controller/ChatController.java b/mallchat-custom-server/src/main/java/com/abin/mallchat/custom/chat/controller/ChatController.java index ac0154e..61e862f 100644 --- a/mallchat-custom-server/src/main/java/com/abin/mallchat/custom/chat/controller/ChatController.java +++ b/mallchat-custom-server/src/main/java/com/abin/mallchat/custom/chat/controller/ChatController.java @@ -124,7 +124,6 @@ public class ChatController { private void filterBlackMsg(CursorPageBaseResp memberPage) { Set blackMembers = getBlackUidSet(); memberPage.getList().removeIf(a -> blackMembers.contains(a.getFromUser().getUid().toString())); - System.out.println(1); } @PostMapping("/msg")