Skip to content

Commit

Permalink
cache模块冗余代码优化
Browse files Browse the repository at this point in the history
  • Loading branch information
echohlne committed Sep 22, 2020
1 parent 870ea9a commit 5d3c140
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public boolean containsKey(K key) {
return false;
}

if (false == co.isExpired()) {
if (!co.isExpired()) {
// 命中
return true;
}
Expand Down

0 comments on commit 5d3c140

Please sign in to comment.