aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-11 23:00:23 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-11 23:00:23 -0400
commit7d411c3c911c087848ca0ac5e7586b8fbe6ea129 (patch)
treedda978d02c4a8b8d2b6a0fa204f3d903c1018cea /MediaBrowser.Providers
parentb96ef2ffae88c0cfcf2d4e371dcd97780e1d3861 (diff)
removed null checks that are no longer needed
Diffstat (limited to 'MediaBrowser.Providers')
-rw-r--r--MediaBrowser.Providers/ImageFromMediaLocationProvider.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/MediaBrowser.Providers/ImageFromMediaLocationProvider.cs b/MediaBrowser.Providers/ImageFromMediaLocationProvider.cs
index 49dd1bddd8..160c171e35 100644
--- a/MediaBrowser.Providers/ImageFromMediaLocationProvider.cs
+++ b/MediaBrowser.Providers/ImageFromMediaLocationProvider.cs
@@ -86,11 +86,6 @@ namespace MediaBrowser.Providers
/// <param name="item">The item.</param>
private void ValidateImages(BaseItem item)
{
- if (item.Images == null)
- {
- return;
- }
-
// Only validate paths from the same directory - need to copy to a list because we are going to potentially modify the collection below
var deletedKeys = item.Images.ToList().Where(image =>
{