删除无用测试代码

back_recharge
lvxinran 2021-01-14 19:59:06 +08:00
parent 5db99079a1
commit 6c0c612fae
1 changed files with 5 additions and 5 deletions

View File

@ -138,11 +138,11 @@ public class SessionManager implements INetSession<ISession>, INetReceived<ISess
private void ackIndication(ISession iSession, int ackId) {
LOGGER.info("the uid={},the ackId={}", iSession.getUid(), ackId);
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
// try {
// TimeUnit.SECONDS.sleep(2);
// } catch (InterruptedException e) {
// e.printStackTrace();
// }
iSession.clearIndication(ackId);
MessageUtil.sendAck(iSession, ackId);
}