1
0
mirror of https://github.com/golang/go synced 2024-11-18 09:34:53 -07:00

net/http: remove unnecessary parameter type

This commit is contained in:
shogo-ma 2018-04-22 00:09:27 +09:00
parent 0a129dbca6
commit 4ffcc780f1

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