"eladmin-common/src/main/vscode:/vscode.git/clone" did not exist on "62cb72eab9dfbf54ffa24ce2098506ab300854ef"
Commit c9614bd7 authored by TikiWong's avatar TikiWong
Browse files

笔误

parent 6941b984
......@@ -47,8 +47,8 @@ public class UserCacheManager {
public void expel() {
long now = System.currentTimeMillis();
if (cache.size() < minEvictableSize ||
now < nextMinEvictableTime &&
!expelLock.compareAndSet(true, false)) {
now < nextMinEvictableTime ||
!expelLock.compareAndSet(true, false)) {
return;
}
long oldestTime = now;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment