Compile Warnings

This commit is contained in:
2024-12-14 09:41:18 -07:00
parent 9afc7360b9
commit 2361796bbf
4 changed files with 8 additions and 64 deletions

View File

@ -1089,7 +1089,7 @@ internal static partial class Helper20240105
port = new System.Uri(uri).Port;
}
List<Field> itemFields = (from l in keePassFileGroupEntryStrings select new Field(l.Key, l.Value.Value, 0)).ToList();
Login login = new(new Uri[] { new(uri, host, port) }, username, password);
Login login = new([new(uri, host, port)], username, password);
result = new(revisionDate,
creationTime,
folderId,
@ -1282,7 +1282,7 @@ internal static partial class Helper20240105
revisionDate = item.RevisionDate;
notes.Add($"{item.Login.Password} on {item.RevisionDate}");
}
login = new(new Uri[] { new(uri, host, port) }, username, password);
login = new([new(uri, host, port)], username, password);
result = new(revisionDate,
creationTime,
folderId,