mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Unexport lru.Cache.Remove
This commit is contained in:
parent
a22d83b880
commit
ffae51549b
1 changed files with 2 additions and 2 deletions
|
|
@ -82,8 +82,8 @@ func (c *Cache) Get(key Key) (value interface{}, ok bool) {
|
|||
return
|
||||
}
|
||||
|
||||
// Remove removes the provided key from the cache.
|
||||
func (c *Cache) Remove(key Key) {
|
||||
// remove removes the provided key from the cache.
|
||||
func (c *Cache) remove(key Key) {
|
||||
if c.cache == nil {
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue