mirror of
https://github.com/pgsty/minio.git
synced 2026-08-10 00:03:29 +03:00
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:
+2
-2
@@ -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)))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user