Commit 15095be9 authored by shogo-ma's avatar shogo-ma Committed by Brad Fitzpatrick

net/http: remove unnecessary parameter type

Change-Id: I954ca86c142e81c03ec867d10997617d1643b35d
GitHub-Last-Rev: 4ffcc780f16f20ad3a531638d4cef1c7d04da0bc
GitHub-Pull-Request: golang/go#24987
Reviewed-on: https://go-review.googlesource.com/108675Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 20c98dc3
...@@ -718,7 +718,7 @@ func defaultCheckRedirect(req *Request, via []*Request) error { ...@@ -718,7 +718,7 @@ func defaultCheckRedirect(req *Request, via []*Request) error {
// //
// See the Client.Do method documentation for details on how redirects // See the Client.Do method documentation for details on how redirects
// are handled. // 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) return DefaultClient.Post(url, contentType, body)
} }
...@@ -733,7 +733,7 @@ func Post(url string, contentType string, body io.Reader) (resp *Response, err e ...@@ -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 // See the Client.Do method documentation for details on how redirects
// are handled. // 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) req, err := NewRequest("POST", url, body)
if err != nil { if err != nil {
return nil, err return nil, err
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment