mirror of https://github.com/gin-gonic/gin.git
tree: range over nodes values (#2229)
This commit is contained in:
parent
731c827892
commit
acac7b1210
6
tree.go
6
tree.go
|
@ -169,9 +169,9 @@ walk:
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update maxParams (max of all children)
|
// Update maxParams (max of all children)
|
||||||
for i := range child.children {
|
for _, v := range child.children {
|
||||||
if child.children[i].maxParams > child.maxParams {
|
if v.maxParams > child.maxParams {
|
||||||
child.maxParams = child.children[i].maxParams
|
child.maxParams = v.maxParams
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue