Small speed improvement - no need to convert an array to a list to just iterate over it

pull/2476/head
Vasily 4 years ago
parent ae1f975b99
commit f81cd037f0

@ -835,9 +835,9 @@ namespace MediaBrowser.Controller.Entities
private IReadOnlyList<BaseItem> SortItemsByRequest(InternalItemsQuery query, IReadOnlyList<BaseItem> items)
{
var ids = query.ItemIds.ToList();
var positions = new Dictionary<Guid, OneTimeQueue<int>>(ids.Count);
for (int i = 0; i < ids.Count; i++)
var ids = query.ItemIds;
var positions = new Dictionary<Guid, OneTimeQueue<int>>(ids.Length);
for (int i = 0; i < ids.Length; i++)
{
if (positions.TryGetValue(ids[i], out var q))
{

Loading…
Cancel
Save