diff --git a/context.go b/context.go index cf037d0a..e000c53e 100644 --- a/context.go +++ b/context.go @@ -419,11 +419,6 @@ func (c *Context) GetPostFormArray(key string) ([]string, bool) { if values := req.PostForm[key]; len(values) > 0 { return values, true } - /*if req.MultipartForm != nil && req.MultipartForm.File != nil { - if values := req.MultipartForm.Value[key]; len(values) > 0 { - return values, true - } - }*/ return []string{}, false }