remove the comments

This commit is contained in:
xlwcom 2017-07-04 11:03:49 +08:00
parent 234708062a
commit 3c17e2a7e6
1 changed files with 3 additions and 3 deletions

View File

@ -189,16 +189,16 @@ func ParseBool(val interface{}) (value bool, err error) {
return false, nil
}
case int8, int32, int64:
strV := fmt.Sprintf("%d", v) // w 由 %s 修改为 %d
strV := fmt.Sprintf("%d", v)
if strV == "1" {
return true, nil
} else if strV == "0" {
return false, nil
}
case float64:
if v == 1.0 { // w 由 1 修改为 1.0
if v == 1.0 {
return true, nil
} else if v == 0.0 { // w 由 0 修改为 0.0
} else if v == 0.0 {
return false, nil
}
}