mirror of
https://github.com/minio/minio.git
synced 2025-11-11 06:20:14 -05: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:
4
vendor/github.com/klauspost/reedsolomon/matrix.go
generated
vendored
4
vendor/github.com/klauspost/reedsolomon/matrix.go
generated
vendored
@@ -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