mirror of
https://github.com/minio/minio.git
synced 2026-02-04 18:00:15 -05:00
Run modernize (#21546)
`go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./...` executed. `go generate ./...` ran afterwards to keep generated.
This commit is contained in:
@@ -38,8 +38,8 @@ func (o *listPathOptions) parseMarker() {
|
||||
o.Marker = s[:start]
|
||||
end := strings.LastIndex(s, "]")
|
||||
tag := strings.Trim(s[start:end], "[]")
|
||||
tags := strings.Split(tag, ",")
|
||||
for _, tag := range tags {
|
||||
tags := strings.SplitSeq(tag, ",")
|
||||
for tag := range tags {
|
||||
kv := strings.Split(tag, ":")
|
||||
if len(kv) < 2 {
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user