mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
bf9c4ed033
This reverts commit 5d2a1e8d48
.
17 lines
255 B
Go
17 lines
255 B
Go
package util
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
func ParseInt(text string, defaultValue int) int{
|
|
count, parseError := strconv.ParseUint(text,10,64)
|
|
if parseError!=nil {
|
|
if len(text)>0{
|
|
return 0
|
|
}
|
|
return defaultValue
|
|
}
|
|
return int(count)
|
|
}
|