Merge pull request #126 from noisyscanner/master

Get rid of unused isNumeric() function
This commit is contained in:
Vasily Romanov
2017-06-24 22:09:25 +03:00
committed by GitHub
-3
View File
@@ -390,9 +390,6 @@ func isUpper(b byte) bool {
return b >= 65 && b <= 90
}
func isNumeric(b byte) bool {
return b >= 48 && b <= 57
}
// convert HTTPRestClient to httpRestClient
func lowerFirst(s string) string {
if s == "" {