aboutsummaryrefslogtreecommitdiff
path: root/flag.go
diff options
context:
space:
mode:
authorJonathan Barronville <[email protected]>2016-06-24 08:07:19 -0400
committerGitHub <[email protected]>2016-06-24 08:07:19 -0400
commit3f939ad5200d651fc312903ebe5ae48a51224a7e (patch)
treea6578428e29228ea62c640675d3bd86e06afd952 /flag.go
parent367864438f1b1a3c7db4da06a2f55b144e6784e0 (diff)
Removed unused field "exitOnError".
Diffstat (limited to 'flag.go')
-rw-r--r--flag.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/flag.go b/flag.go
index 965df13..721c372 100644
--- a/flag.go
+++ b/flag.go
@@ -141,7 +141,6 @@ type FlagSet struct {
shorthands map[byte]*Flag
args []string // arguments after flags
argsLenAtDash int // len(args) when a '--' was located when parsing, or -1 if no --
- exitOnError bool // does the program exit if there's an error?
errorHandling ErrorHandling
output io.Writer // nil means stderr; use out() accessor
interspersed bool // allow interspersed option/non-option args