Add nullable context to SabreTools.IO

This commit is contained in:
Matt Nadareski
2023-08-10 15:02:40 -04:00
parent fb81fd0243
commit 7bb0ba245d
22 changed files with 356 additions and 174 deletions

View File

@@ -66,7 +66,10 @@ namespace SabreTools.Serialization
// Loop through and write out the rows
foreach (var row in rows)
{
var rowArray = new List<string>
if (row == null)
continue;
var rowArray = new List<string?>
{
row.SHA256,
row.Name,