From 8953722327330ee2c07be51b9eb0c4f4261a5916 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Thu, 21 Feb 2019 23:35:05 -0800 Subject: [PATCH] Restore changes in vendor directory (#2594) Part of the changes in 2591 modifies the vendor directory which should not be modified. `dep ensure` will change it back. This fix reverts the change of ``` vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go ``` in 2591. Signed-off-by: Yong Tang --- .../apache/thrift/lib/go/thrift/simple_json_protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go b/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go index af2bcd3a6..2e8a71112 100644 --- a/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go +++ b/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go @@ -334,7 +334,7 @@ func (p *TSimpleJSONProtocol) ReadFieldBegin() (string, TType, int16, error) { p.reader.ReadByte() name, err := p.ParseStringBody() // simplejson is not meant to be read back into thrift - // - see https://wiki.apache.org/thrift/ThriftUsageJava + // - see http://wiki.apache.org/thrift/ThriftUsageJava // - use JSON instead if err != nil { return name, STOP, 0, err