more test/fixes

This commit is contained in:
kay.one 2011-05-19 22:52:05 -07:00
commit 8fca3c3419
10 changed files with 178 additions and 30 deletions

View file

@ -311,17 +311,5 @@ namespace NzbDrone.Core.Helpers
return map.SeriesId;
}
public static List<String> FindById(int seriesId)
{
List<String> results = new List<string>();
var maps = SceneNameMappings.Where(s => s.SeriesId == seriesId);
foreach (var map in maps)
results.Add(map.Name);
return results;
}
}
}