1
0
mirror of https://github.com/golang/go synced 2024-09-30 12:08:32 -06:00

net/http: remove unnecessary parameter type

Change-Id: I954ca86c142e81c03ec867d10997617d1643b35d
GitHub-Last-Rev: 4ffcc780f1
GitHub-Pull-Request: golang/go#24987
Reviewed-on: https://go-review.googlesource.com/108675
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
shogo-ma 2018-04-21 16:46:27 +00:00 committed by Brad Fitzpatrick
parent 20c98dc396
commit 15095be9fb

View File

@ -718,7 +718,7 @@ func defaultCheckRedirect(req *Request, via []*Request) error {
//
// See the Client.Do method documentation for details on how redirects
// are handled.
func Post(url string, contentType string, body io.Reader) (resp *Response, err error) {
func Post(url, contentType string, body io.Reader) (resp *Response, err error) {
return DefaultClient.Post(url, contentType, body)
}
@ -733,7 +733,7 @@ func Post(url string, contentType string, body io.Reader) (resp *Response, err e
//
// See the Client.Do method documentation for details on how redirects
// are handled.
func (c *Client) Post(url string, contentType string, body io.Reader) (resp *Response, err error) {
func (c *Client) Post(url, contentType string, body io.Reader) (resp *Response, err error) {
req, err := NewRequest("POST", url, body)
if err != nil {
return nil, err