Removed Linq usage from ItemController

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-20 21:21:03 -04:00
parent 758d18a652
commit 906ad3cb1a
8 changed files with 76 additions and 133 deletions

View File

@@ -42,15 +42,15 @@ namespace MediaBrowser.Controller.Providers
public enum MetadataProviderPriority
{
// Run this provider at the beginning
First,
First = 1,
// Run this provider after all first priority providers
Second,
Second = 2,
// Run this provider after all second priority providers
Third,
Third = 3,
// Run this provider last
Last
Last = 4
}
}