all: Run go fix ./...

This commit is contained in:
Bjørn Erik Pedersen
2026-06-07 17:02:03 +02:00
parent cf18b827e2
commit 781fabf4e4
10 changed files with 29 additions and 44 deletions
+1 -3
View File
@@ -103,9 +103,7 @@ func (c *Inspector) MethodsFromTypes(include []reflect.Type, exclude []reflect.T
}
for _, t := range include {
for i := range t.NumMethod() {
m := t.Method(i)
for m := range t.Methods() {
if excludes[m.Name] || seen[m.Name] {
continue
}