remove unused function

This commit is contained in:
vmorganp
2021-10-18 00:59:45 -07:00
parent 9a651eea1e
commit 7325564518

View File

@@ -211,13 +211,3 @@ func check(err error) {
fmt.Println(err)
}
}
func checkEnvFetchRecoverable(err error) bool {
if err != nil {
if strings.Contains(err.Error(), "strconv.Atoi: parsing \"\": invalid syntax") {
return true
}
panic(err)
}
return false
}