all: Run modernize -fix ./...

This commit is contained in:
Bjørn Erik Pedersen
2025-02-26 10:15:04 +01:00
parent b7ae24b9c2
commit 521911a576
141 changed files with 302 additions and 354 deletions

View File

@@ -321,7 +321,7 @@ func uniqueStringsReuse(s []string) []string {
for i, val := range s {
var seen bool
for j := 0; j < i; j++ {
for j := range i {
if s[j] == val {
seen = true
break