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

@@ -117,9 +117,9 @@ namespace MediaBrowser.Controller.Resolvers
public enum ResolverPriority
{
First,
Second,
Third,
Last
First = 1,
Second = 2,
Third = 3,
Last = 4
}
}