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 exclusion objects using a set of field names
/// </summary>
/// <param name="fields">List of field names</param>
public void PopulateExclusionsFromList(List<string> fields)
public void PopulateExclusionsFromList(List<string>? fields)
{
// Instantiate the removers, if necessary
DatHeaderRemover ??= new DatHeaderRemover();