removed unused method

This commit is contained in:
Deluan 2016-03-02 13:23:58 -05:00
parent 4843ccb46c
commit b9fb5eb7ca

View file

@ -27,17 +27,6 @@ func (c *BaseAPIController) SendError(errorCode int, message ...interface{}) {
c.CustomAbort(200, xml.Header+string(xmlBody))
}
func (c *BaseAPIController) prepResponse(response responses.Subsonic) interface{} {
f := c.GetString("f")
if f == "json" {
type jsonWrapper struct {
Subsonic responses.Subsonic `json:"subsonic-response"`
}
return jsonWrapper{Subsonic: response}
}
return response
}
func (c *BaseAPIController) SendResponse(response responses.Subsonic) {
f := c.GetString("f")
if f == "json" {