mirror of
https://github.com/kataras/iris.git
synced 2025-01-22 18:21:03 +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
|
||||
}
|
||||
|
||||
if len(g.children) > 0 {
|
||||
for _, child := range g.children {
|
||||
if isNotNil(child) {
|
||||
return true
|
||||
}
|
||||
for _, child := range g.children {
|
||||
if isNotNil(child) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user