mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 02:31:04 +01:00
errgroup: remove redundant len
check (#2354)
`len(g.children) > 0` is redundant because `range` already skips empty slice. Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
This commit is contained in:
parent
4e90cd4e4d
commit
df7737ed57
|
@ -330,11 +330,9 @@ func isNotNil(err error) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(g.children) > 0 {
|
for _, child := range g.children {
|
||||||
for _, child := range g.children {
|
if isNotNil(child) {
|
||||||
if isNotNil(child) {
|
return true
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user