修复小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);

View File

@@ -77,7 +77,7 @@ public class GsonHelper {
public static long getAsPrimitiveLong(JsonElement element) {
Long r = getAsLong(element);
return r == null ? 0l : r;
return r == null ? 0L : r;
}
public static Integer getAsInteger(JsonElement element) {