summaryrefslogtreecommitdiff
path: root/src/lib/flag.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/flag.go')
-rw-r--r--src/lib/flag.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/flag.go b/src/lib/flag.go
index acf3424db..351159c17 100644
--- a/src/lib/flag.go
+++ b/src/lib/flag.go
@@ -144,9 +144,7 @@ func (b *BoolValue) Str() string {
if b.val {
return "true"
}
- else {
- return "false"
- }
+ return "false"
}
func NewBoolValue(b bool, p *bool) *BoolValue {