diff --git a/providers/http/http.go b/providers/http/http.go index 816d166..44ee2cd 100644 --- a/providers/http/http.go +++ b/providers/http/http.go @@ -53,7 +53,6 @@ func funcRedirect (status int, pat string) (string, error) { } func funcParseForm (req *http.Request) url.Values { - // FIXME there is already a parse form method lol this can be removed err := req.ParseForm() if err != nil { return nil } return req.Form