diff options
| author | Shawn Smith <shawn.p.smith@gmail.com> | 2013-12-18 13:29:27 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2013-12-18 13:29:27 -0500 |
| commit | b758d8703a87aa2040302e9503a77d683b5f39f9 (patch) | |
| tree | f904417072194fa8abaa0b2da5c50b5e575976ac /src/pkg/encoding | |
| parent | a025e1caac516c967486f4644fbe4c647100b632 (diff) | |
| download | go-b758d8703a87aa2040302e9503a77d683b5f39f9.tar.xz | |
encoding/csv: remove unused unreadRune function
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/37720046
Diffstat (limited to 'src/pkg/encoding')
| -rw-r--r-- | src/pkg/encoding/csv/reader.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pkg/encoding/csv/reader.go b/src/pkg/encoding/csv/reader.go index b328dcc375..d9432954ac 100644 --- a/src/pkg/encoding/csv/reader.go +++ b/src/pkg/encoding/csv/reader.go @@ -193,12 +193,6 @@ func (r *Reader) readRune() (rune, error) { return r1, err } -// unreadRune puts the last rune read from r back. -func (r *Reader) unreadRune() { - r.r.UnreadRune() - r.column-- -} - // skip reads runes up to and including the rune delim or until error. func (r *Reader) skip(delim rune) error { for { |
