1
0
mirror of https://github.com/golang/go synced 2024-11-22 22:30:02 -07:00

bufio: Remove unneeded error initialization

The default value for error is nil so there is no need to assign this
value here.

Change-Id: I4714ef7607996ccbf91b704390e1d1d39ee3847b
Reviewed-on: https://go-review.googlesource.com/12355
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Silvan Jegen 2015-01-13 21:41:23 +01:00 committed by Ian Lance Taylor
parent dabb268170
commit c4bfd2de20

View File

@ -400,7 +400,6 @@ func (b *Reader) ReadBytes(delim byte) (line []byte, err error) {
// accumulating full buffers.
var frag []byte
var full [][]byte
err = nil
for {
var e error