mirror of
https://github.com/pgsty/minio.git
synced 2026-07-24 06:26:17 +03:00
remove unnecessary updateAt()
This commit is contained in:
Vendored
-2
@@ -76,7 +76,6 @@ func (r *Cache) Get(key string) interface{} {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
r.updatedAt[key] = time.Now()
|
|
||||||
return value
|
return value
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -93,7 +92,6 @@ func (r *Cache) Set(key string, value interface{}) bool {
|
|||||||
r.Lock()
|
r.Lock()
|
||||||
defer r.Unlock()
|
defer r.Unlock()
|
||||||
r.items[key] = value
|
r.items[key] = value
|
||||||
r.updatedAt[key] = time.Now()
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user