vendor: use "ugorji/go" v1.1.1

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee 2018-04-09 14:37:03 -07:00
parent 91664ec5ac
commit ab89af6dd3
2 changed files with 2 additions and 5 deletions

3
Gopkg.lock generated
View File

@ -225,7 +225,8 @@
[[projects]]
name = "github.com/ugorji/go"
packages = ["codec"]
revision = "f3cacc17c85ecb7f1b6a9e373ee85d1480919868"
revision = "b4c50a2b199d93b13dc15e78929cfb23bfdf21ab"
version = "v1.1.1"
[[projects]]
name = "github.com/urfave/cli"

View File

@ -2382,10 +2382,6 @@ func (d *Decoder) wrapErrstr(v interface{}, err *error) {
*err = fmt.Errorf("%s decode error [pos %d]: %v", d.hh.Name(), d.r.numread(), v)
}
func (d *Decoder) NumBytesRead() int {
return d.r.numread()
}
// --------------------------------------------------
// decSliceHelper assists when decoding into a slice, from a map or an array in the stream.