From 1097c1798ffeabf70d5b7712e9ecf241e93c5a7b Mon Sep 17 00:00:00 2001 From: thinkerou Date: Thu, 7 Jun 2018 13:52:48 +0800 Subject: [PATCH] remove comment --- context.go | 1 - 1 file changed, 1 deletion(-) diff --git a/context.go b/context.go index f25de32d..6de9950b 100755 --- a/context.go +++ b/context.go @@ -442,7 +442,6 @@ func (c *Context) GetPostFormMap(key string) (map[string]string, bool) { req.ParseMultipartForm(c.engine.MaxMultipartMemory) dicts, exist := c.get(req.PostForm, key) - // when go version is 1.6, exist is false if !exist && req.MultipartForm != nil && req.MultipartForm.File != nil { dicts, exist = c.get(req.MultipartForm.Value, key) }