delete else keyword (#948)

This commit is contained in:
田欧
2017-06-13 11:36:05 +08:00
committed by Bo-Yi Wu
parent 9ee5afff48
commit 6dac8c8a48
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -432,7 +432,8 @@ walk: // Outer loop for walking the tree
if handlers = n.handlers; handlers != nil {
return
} else if len(n.children) == 1 {
}
if len(n.children) == 1 {
// No handle found. Check if a handle for this path + a
// trailing slash exists for TSR recommendation
n = n.children[0]