Address some nullability in tests

This commit is contained in:
Matt Nadareski
2024-03-05 13:32:49 -05:00
parent dd03d30547
commit 5ea131c7e1
11 changed files with 228 additions and 162 deletions

View File

@@ -56,7 +56,7 @@ namespace SabreTools.Filtering
/// Populate the filters objects using a set of key:value filters
/// </summary>
/// <param name="filters">List of key:value where ~key/!key is negated</param>
public void PopulateFiltersFromList(List<string> filters)
public void PopulateFiltersFromList(List<string>? filters)
{
// Instantiate the filters, if necessary
MachineFilter ??= new MachineFilter();