diff --git a/flag.go b/flag.go index afb0fed..d98c808 100644 --- a/flag.go +++ b/flag.go @@ -649,18 +649,6 @@ func withEnvHint(envVar, str string) string { return str + envText } -func withRequiredHint(isRequired bool, str string) string { - if isRequired { - return str + " (required)" - } - - return str -} - -func withHints(envVar string, isRequired bool, str string) string { - return withRequiredHint(isRequired, withEnvHint(envVar, str)) -} - func withFileHint(filePath, str string) string { fileText := "" if filePath != "" {