From 4ea921623459afed32336f3cd80470a972906ef2 Mon Sep 17 00:00:00 2001 From: Brad Reed Date: Sat, 24 Jun 2017 20:02:23 +0100 Subject: [PATCH] Get rid of unused isNumeric() function --- gen/generator.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/gen/generator.go b/gen/generator.go index cae11b6..f4312f6 100644 --- a/gen/generator.go +++ b/gen/generator.go @@ -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 == "" {