Delete unused static const (#2830)

This commit is contained in:
Alexander Melentyev 2021-08-20 03:38:24 +03:00 committed by GitHub
parent a46dee3a9a
commit f3a6b69fd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

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