diff --git a/cmd/goal/application.go b/cmd/goal/application.go index 4121564adc..0e5c6e4e81 100644 --- a/cmd/goal/application.go +++ b/cmd/goal/application.go @@ -24,8 +24,6 @@ import ( "os" "strconv" "strings" - "unicode" - "unicode/utf8" "github.com/spf13/cobra" @@ -920,170 +918,6 @@ var deleteAppCmd = &cobra.Command{ }, } -func unicodePrintable(str string) bool { - for _, r := range str { - if !unicode.IsPrint(r) { - return false - } - } - return true -} - -func jsonPrintable(str string) bool { - // htmlSafeSet holds the value true if the ASCII character with the given - // array position can be safely represented inside a JSON string, embedded - // inside of HTML