1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-30 21:14:13 +00:00

Merge pull request #748 from smallfish/master

Remove some unnecessary code
This commit is contained in:
astaxie 2014-08-17 21:36:10 +08:00
commit 8b8638c507

View File

@ -394,11 +394,8 @@ func (b *BeegoHttpRequest) ToFile(filename string) error {
} }
defer resp.Body.Close() defer resp.Body.Close()
_, err = io.Copy(f, resp.Body) _, err = io.Copy(f, resp.Body)
if err != nil {
return err return err
} }
return nil
}
// ToJson returns the map that marshals from the body bytes as json in response . // ToJson returns the map that marshals from the body bytes as json in response .
// it calls Response inner. // it calls Response inner.
@ -408,11 +405,8 @@ func (b *BeegoHttpRequest) ToJson(v interface{}) error {
return err return err
} }
err = json.Unmarshal(data, v) err = json.Unmarshal(data, v)
if err != nil {
return err return err
} }
return nil
}
// ToXml returns the map that marshals from the body bytes as xml in response . // ToXml returns the map that marshals from the body bytes as xml in response .
// it calls Response inner. // it calls Response inner.
@ -422,11 +416,8 @@ func (b *BeegoHttpRequest) ToXML(v interface{}) error {
return err return err
} }
err = xml.Unmarshal(data, v) err = xml.Unmarshal(data, v)
if err != nil {
return err return err
} }
return nil
}
// Response executes request client gets response mannually. // Response executes request client gets response mannually.
func (b *BeegoHttpRequest) Response() (*http.Response, error) { func (b *BeegoHttpRequest) Response() (*http.Response, error) {