1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-24 12:04:15 +00:00

Remove unnecessary optional group flag '?' since has to match one of comma or end of string

This commit is contained in:
Donal Byrne 2015-03-25 14:54:39 +01:00 committed by astaxie
parent 1a6ea693b5
commit 34940d00c0

View File

@ -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.