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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user