Removed unused code

This commit is contained in:
Deluan
2016-03-23 12:00:13 -04:00
parent 0e1618a6ac
commit d57f51c7ac
5 changed files with 6 additions and 13 deletions
-5
View File
@@ -29,11 +29,6 @@ func (r *artistRepository) Get(id string) (*domain.Artist, error) {
return rec.(*domain.Artist), err
}
func (r *artistRepository) GetByName(name string) (*domain.Artist, error) {
id := r.NewId(name)
return r.Get(id)
}
func (r *artistRepository) PurgeInactive(active domain.Artists) ([]string, error) {
return r.purgeInactive(active, func(e interface{}) string {
return e.(domain.Artist).Id