Skip to content

Commit

Permalink
Remove unused println
Browse files Browse the repository at this point in the history
ooops
  • Loading branch information
Wikidepia committed Jul 19, 2024
1 parent 08ac175 commit 22929b3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ func evictCache() {
}
c := ttlBucket.Cursor()
for k, v := c.First(); k != nil; k, v = c.Next() {
println(utils.B2S(k))
if n, err := strconv.ParseInt(utils.B2S(k), 10, 64); err == nil {
if n < curTime {
ttlBucket.Delete(k)
Expand Down

0 comments on commit 22929b3

Please sign in to comment.