Delete unused static const

This commit is contained in:
Alexander Melentyev 2021-08-19 13:58:23 +03:00
parent a46dee3a9a
commit 2f709e3f92

View File

@ -101,8 +101,7 @@ func countParams(path string) uint16 {
type nodeType uint8 type nodeType uint8
const ( const (
static nodeType = iota // default root nodeType = iota + 1
root
param param
catchAll catchAll
) )