From b00ebeaebcd8d7535ff08163a7907a6a8fe7b703 Mon Sep 17 00:00:00 2001 From: Tim Cooper Date: Thu, 27 Feb 2020 12:11:30 -0600 Subject: [PATCH] net/http/cgi: remove outdated TODO MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Cookies already work as http.Request parses the Cookie header on-demand when the Cookie methods are called. Change-Id: Ib7a6f68be02940ff0b56d2465c94545d6fd43847 Reviewed-on: https://go-review.googlesource.com/c/go/+/221417 Reviewed-by: Daniel Martí Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot --- src/net/http/cgi/child.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/net/http/cgi/child.go b/src/net/http/cgi/child.go index cb140f8f2f..9474175f17 100644 --- a/src/net/http/cgi/child.go +++ b/src/net/http/cgi/child.go @@ -89,8 +89,6 @@ func RequestFromMap(params map[string]string) (*http.Request, error) { r.Header.Add(strings.ReplaceAll(k[5:], "_", "-"), v) } - // TODO: cookies. parsing them isn't exported, though. - uriStr := params["REQUEST_URI"] if uriStr == "" { // Fallback to SCRIPT_NAME, PATH_INFO and QUERY_STRING. -- 2.50.0