1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-19 17:53:47 +00:00

Move to lists and arrays for more performant iterating

This commit is contained in:
Kyle Spearrin
2016-08-17 21:19:19 -04:00
parent ca4a00196a
commit 8579b7130a
2 changed files with 15 additions and 9 deletions

View File

@@ -1,8 +1,6 @@
using System;
using System.Collections.Generic;
using Bit.App.Resources;
using Bit.App.Utilities;
using System.Linq;
namespace Bit.App.Models.Page
{
@@ -36,7 +34,7 @@ namespace Bit.App.Models.Page
Name = folder.Name?.Decrypt();
}
public Folder(IEnumerable<Site> sites)
public Folder(List<Site> sites)
{
AddRange(sites);
}