Commit ed3b3ad4 authored by Yanqiang Miao's avatar Yanqiang Miao

delete a unused function in the 'pkg/kubectl/cmd/util/helpers.go'

parent 83e887fa
......@@ -46,7 +46,6 @@ import (
"github.com/evanphx/json-patch"
"github.com/golang/glog"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
const (
......@@ -288,14 +287,6 @@ func isWatch(cmd *cobra.Command) bool {
return false
}
func getFlag(cmd *cobra.Command, flag string) *pflag.Flag {
f := cmd.Flags().Lookup(flag)
if f == nil {
glog.Fatalf("flag accessed but not defined for command %s: %s", cmd.Name(), flag)
}
return f
}
func GetFlagString(cmd *cobra.Command, flag string) string {
s, err := cmd.Flags().GetString(flag)
if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment