This commit is contained in:
2023-11-11 23:08:32 -07:00
parent 0a940b4cee
commit 669762bdc9
20 changed files with 108 additions and 118 deletions

View File

@ -5,8 +5,8 @@ internal abstract class Item
internal static List<Models.Item> GetMerged(List<Models.Item> itemsA, List<Models.Item> itemsB)
{
List<Models.Item> results = new();
List<string> collection = new();
List<Models.Item> results = [];
List<string> collection = [];
foreach (Models.Item item in itemsA)
{
results.Add(item);