Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix some nullability warnings
  • Loading branch information
Sergio0694 committed Jan 20, 2024
commit eda07b39e4dbc55f69984a09a0f5c320167f60b4
Original file line number Diff line number Diff line change
Expand Up @@ -1046,8 +1046,8 @@ public void Test_ObservableProperty_ModelWithDependentPropertyAndPropertyChangin
{
ModelWithDependentPropertyAndPropertyChanging model = new();

List<string> changingArgs = new();
List<string> changedArgs = new();
List<string?> changingArgs = new();
List<string?> changedArgs = new();

model.PropertyChanging += (s, e) => changingArgs.Add(e.PropertyName);
model.PropertyChanged += (s, e) => changedArgs.Add(e.PropertyName);
Expand All @@ -1064,7 +1064,7 @@ public void Test_ObservableProperty_ModelWithDependentPropertyAndNoPropertyChang
{
ModelWithDependentPropertyAndNoPropertyChanging model = new();

List<string> changedArgs = new();
List<string?> changedArgs = new();

model.PropertyChanged += (s, e) => changedArgs.Add(e.PropertyName);

Expand Down