Skip to content

Commit

Permalink
WAF fix nullable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jbe2277 committed Sep 23, 2023
1 parent 514477a commit 7c79a10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected void OriginalCollectionChanged(object? sender, NotifyCollectionChanged
{
for (int i = 0; i < e.NewItems?.Count; i++)
{
innerCollection[i + e.NewStartingIndex] = CreateItem((TOriginal)e.NewItems[i]);
innerCollection[i + e.NewStartingIndex] = CreateItem((TOriginal)e.NewItems[i]!);
}
}
else
Expand Down

0 comments on commit 7c79a10

Please sign in to comment.