sm
/
cache
1
0
Fork 0

Remove expired() since it's no longer used (because of the inlining)

This commit is contained in:
Patrick Mylund Nielsen 2015-11-30 14:14:52 -05:00
parent 8084bd02b5
commit 1924ec3baf
1 changed files with 0 additions and 8 deletions

View File

@ -17,16 +17,8 @@ type Item struct {
Expiration int64
}
func (item Item) expired(now int64) bool {
if item.Expiration == 0 {
return false
}
return now > item.Expiration
}
// Returns true if the item has expired.
func (item Item) Expired() bool {
// "Inlining" of expired
if item.Expiration == 0 {
return false
}