vendorize: update all vendorized packages. (#2206)

Bring in new changes from upstream for all the packages.

Important ones include
   - gorilla/mux
   - logrus
   - jwt
This commit is contained in:
Harshavardhana
2016-07-14 14:59:20 -07:00
committed by GitHub
parent b090c7112e
commit 35d438e0ff
84 changed files with 2546 additions and 1506 deletions

View File

@@ -87,9 +87,9 @@ func (m matrix) Check() error {
//
// Example: [[1, 2], [3, 4]]
func (m matrix) String() string {
var rowOut []string
rowOut := make([]string, 0, len(m))
for _, row := range m {
var colOut []string
colOut := make([]string, 0, len(row))
for _, col := range row {
colOut = append(colOut, strconv.Itoa(int(col)))
}