mirror of
https://github.com/kataras/iris.git
synced 2025-02-02 07:20:35 +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,13 +330,11 @@ 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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user