1
0
mirror of https://github.com/golang/go synced 2024-11-12 08:20:22 -07:00

flag: remove unused FlagSet.exitOnError field

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/14279043
This commit is contained in:
ChaiShushan 2013-12-17 23:18:12 -05:00 committed by Russ Cox
parent f439e07b1b
commit 8eb508dd08

View File

@ -269,7 +269,6 @@ type FlagSet struct {
actual map[string]*Flag
formal map[string]*Flag
args []string // arguments after flags
exitOnError bool // does the program exit if there's an error?
errorHandling ErrorHandling
output io.Writer // nil means stderr; use out() accessor
}