Browse Source

Remove dead firstLine assignment

pull/8/head
Daniel Martí 10 years ago
parent
commit
c0b809a051
  1. 4
      index.go

4
index.go

@ -166,9 +166,7 @@ func (a *App) TextDesc(w io.Writer) {
left = left[last+1:] left = left[last+1:]
colsUsed = 0 colsUsed = 0
} }
if firstLine { if !firstLine {
firstLine = false
} else {
fmt.Fprint(w, linePrefix) fmt.Fprint(w, linePrefix)
} }
fmt.Fprint(w, left) fmt.Fprint(w, left)

Loading…
Cancel
Save