Use single line (#985)

This commit is contained in:
Eason Lin 2017-07-07 08:43:47 +08:00 committed by Bo-Yi Wu
parent e0fd6238d3
commit 7eb943e70a
1 changed files with 2 additions and 4 deletions

View File

@ -100,12 +100,10 @@ func parseAccept(acceptHeader string) []string {
parts := strings.Split(acceptHeader, ",")
out := make([]string, 0, len(parts))
for _, part := range parts {
index := strings.IndexByte(part, ';')
if index >= 0 {
if index := strings.IndexByte(part, ';'); index >= 0 {
part = part[0:index]
}
part = strings.TrimSpace(part)
if len(part) > 0 {
if part = strings.TrimSpace(part); len(part) > 0 {
out = append(out, part)
}
}