encoding/json: remove unused field from Encoder struct

It should've been removed in https://golang.org/cl/9365044

Thanks to Jacek Masiulaniec for noticing.

LGTM=ruiu
R=ruiu
CC=golang-codereviews
https://golang.org/cl/109880043
This commit is contained in:
Brad Fitzpatrick 2014-06-12 09:44:59 -07:00
parent a5bb1af432
commit e46be90fec

View File

@ -139,7 +139,6 @@ func nonSpace(b []byte) bool {
// An Encoder writes JSON objects to an output stream.
type Encoder struct {
w io.Writer
e encodeState
err error
}