1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 03:34:12 +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

@ -113,7 +113,6 @@ func NewConfigData(adapterName string, data []byte) (Configer, error) {
// 0, 0.0, f, F, FALSE, false, False, NO, no, No, N,n, OFF, off, Off.
// Any other value returns an error.
func ParseBool(val interface{}) (value bool, err error) {
if val != nil {
switch v := val.(type) {
case bool:
@ -140,7 +139,6 @@ func ParseBool(val interface{}) (value bool, err error) {
}
}
return false, fmt.Errorf("parsing %q: invalid syntax", val)
} else {
return false, fmt.Errorf("parsing <nil>: invalid syntax")
}
return false, fmt.Errorf("parsing <nil>: invalid syntax")
}

View File

@ -94,9 +94,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

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