1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-11 20:20:39 +00:00

gofmt -s & go_vet

This commit is contained in:
astaxie
2015-03-19 22:29:01 -07:00
parent 1592e9c04d
commit 1d8afdc9c9
13 changed files with 239 additions and 240 deletions

2
cache/memory.go vendored
View File

@ -202,7 +202,7 @@ func (bc *MemoryCache) vaccuum() {
if bc.items == nil {
return
}
for name, _ := range bc.items {
for name := range bc.items {
bc.item_expired(name)
}
}