From bafdf7744f2e1b6aa7709333cef111e64f3d7f0e Mon Sep 17 00:00:00 2001 From: Travis Date: Fri, 24 Feb 2017 12:57:41 -0600 Subject: [PATCH] no longer need to implement `Refresh()` since that was removed` --- cache.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cache.go b/cache.go index 2f4761872..af2284fc7 100644 --- a/cache.go +++ b/cache.go @@ -91,8 +91,6 @@ func (c *LRUCache) Top() []BitmapPair { } func (c *LRUCache) onEvicted(key lru.Key, _ interface{}) { delete(c.counts, key.(uint64)) } -func (c *LRUCache) Refresh() { -} // Ensure LRUCache implements Cache. var _ Cache = &LRUCache{}