no longer need to implement Refresh() since that was removed`

This commit is contained in:
Travis 2017-02-24 12:57:41 -06:00
parent b1ce3ab751
commit bafdf7744f

View file

@ -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{}