remove unnecessary updateAt()

This commit is contained in:
Harshavardhana 2015-07-17 19:48:04 -07:00
parent ebb2d4ec5f
commit 966786c78e
1 changed files with 0 additions and 2 deletions

View File

@ -76,7 +76,6 @@ func (r *Cache) Get(key string) interface{} {
if !ok {
return nil
}
r.updatedAt[key] = time.Now()
return value
}
@ -93,7 +92,6 @@ func (r *Cache) Set(key string, value interface{}) bool {
r.Lock()
defer r.Unlock()
r.items[key] = value
r.updatedAt[key] = time.Now()
return true
}