• Brad Fitzpatrick's avatar
    http: remove finalURL from Client.Get; move to Response · 05a1b7ec
    Brad Fitzpatrick authored
    This CL:
    
    -- removes Response.RequestMethod string
    -- adds Response.Request *Request
    -- removes the finalURL result parameter from client.Get()
    -- adds a gofix rule for callers of http.Get which assign
       the final url to the blank identifier; warning otherwise
    
    Caller who did:
    
    res, finalURL, err := http.Get(...)
    
    now need to do:
    
    res, err := http.Get(...)
    if err != nil {
       ...
    }
    finalURL := res.Request.URL.String()
    
    R=rsc
    CC=golang-dev
    https://golang.org/cl/4535056
    05a1b7ec
Name
Last commit
Last update
..
jsonrpc Loading commit data...
Makefile Loading commit data...
client.go Loading commit data...
debug.go Loading commit data...
server.go Loading commit data...
server_test.go Loading commit data...