Skip to content

Commit

Permalink
feat: remove unused field
Browse files Browse the repository at this point in the history
  • Loading branch information
tigerwill90 committed Jul 15, 2024
1 parent 8967adb commit fadb0ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions node.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,9 @@ func appendCatchAll(path, catchAllKey string) string {

// param represents a parsed parameter and its end position in the path.
type param struct {
key string
end int // -1 if end with {a}, else pos of the next char
catchAll bool
key string
end int // -1 if end with {a}, else pos of the next char
// catchAll bool
}

func parseWildcard(segment string) []param {
Expand Down

0 comments on commit fadb0ff

Please sign in to comment.