1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-06 13:50:18 +00:00

code style simplify

This commit is contained in:
fuxiaohei
2014-07-12 16:03:14 +08:00
parent 77c40e6f7b
commit 20e05a3908
2 changed files with 4 additions and 7 deletions

View File

@ -39,7 +39,7 @@ func Register(name string, adapter Config) {
if adapter == nil {
panic("config: Register adapter is nil")
}
if _, dup := adapters[name]; dup {
if _, ok := adapters[name]; ok {
panic("config: Register called twice for adapter " + name)
}
adapters[name] = adapter