修复小l字符问题

This commit is contained in:
Binary Wang
2017-12-16 12:11:40 +08:00
parent 0714cbe8e2
commit cae504b6bd
21 changed files with 46 additions and 44 deletions

View File

@@ -192,7 +192,7 @@ public class StandardSessionManager implements WxSessionManager, InternalSession
while (true) {
try {
// 每秒清理一次
Thread.sleep(StandardSessionManager.this.backgroundProcessorDelay * 1000l);
Thread.sleep(StandardSessionManager.this.backgroundProcessorDelay * 1000L);
backgroundProcess();
} catch (InterruptedException e) {
StandardSessionManager.this.log.error("SessionManagerImpl.backgroundProcess error", e);