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

make golint happy

This commit is contained in:
astaxie
2016-01-25 20:57:41 +08:00
parent fdce4af9c8
commit 87650ce8bc
3 changed files with 3 additions and 7 deletions

View File

@ -123,9 +123,8 @@ type ConfigContainer struct {
func (c *ConfigContainer) Bool(key string) (bool, error) {
if v, ok := c.data[key]; ok {
return config.ParseBool(v)
} else {
return false, fmt.Errorf("not exist key: %q", key)
}
return false, fmt.Errorf("not exist key: %q", key)
}
// DefaultBool return the bool value if has no error