mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 20:10:55 +00:00
Remove unnecessary optional group flag '?' since has to match one of comma or end of string
This commit is contained in:
parent
185ee872c4
commit
06b5c7f644
@ -33,7 +33,7 @@ import (
|
||||
var (
|
||||
acceptsHtmlRegex = regexp.MustCompile(`(text/html|application/xhtml\+xml)(?:,|$)`)
|
||||
acceptsXmlRegex = regexp.MustCompile(`(application/xml|text/xml)(?:,|$)`)
|
||||
acceptsJsonRegex = regexp.MustCompile(`(application/json)(?:,|$)?`)
|
||||
acceptsJsonRegex = regexp.MustCompile(`(application/json)(?:,|$)`)
|
||||
)
|
||||
|
||||
// BeegoInput operates the http request header, data, cookie and body.
|
||||
|
Loading…
Reference in New Issue
Block a user