summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd/cmd.go
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/cmd/cmd.go')
-rw-r--r--runsc/cmd/cmd.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/runsc/cmd/cmd.go b/runsc/cmd/cmd.go
index d4b834213..9f7fd6e25 100644
--- a/runsc/cmd/cmd.go
+++ b/runsc/cmd/cmd.go
@@ -20,7 +20,6 @@ import (
"os"
"strconv"
- "flag"
"gvisor.googlesource.com/gvisor/pkg/log"
)
@@ -35,16 +34,6 @@ func Fatalf(s string, args ...interface{}) {
os.Exit(128)
}
-// commandLineFlags returns a slice of all top-level command line flags that
-// have been set.
-func commandLineFlags() []string {
- var args []string
- flag.CommandLine.Visit(func(f *flag.Flag) {
- args = append(args, fmt.Sprintf("--%s=%s", f.Name, f.Value.String()))
- })
- return args
-}
-
// intFlags can be used with int flags that appear multiple times.
type intFlags []int