Saticfy go lint.

if block ends with a return statement, so drop this else and outdent its block.
This commit is contained in:
serjvanilla 2015-10-30 15:03:53 +05:00
parent 527637c0f3
commit 52b0926716
1 changed files with 2 additions and 2 deletions

View File

@ -316,9 +316,9 @@ func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Re
n, _ := io.ReadFull(resp.Body, buf)
resp.Body = ioutil.NopCloser(bytes.NewReader(buf[:n]))
return nil, resp, ErrBadHandshake
} else {
resp.Body = ioutil.NopCloser(bytes.NewReader([]byte{}))
}
resp.Body = ioutil.NopCloser(bytes.NewReader([]byte{}))
conn.subprotocol = resp.Header.Get("Sec-Websocket-Protocol")