Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #52 from Grabacr07/hotfix/cre
Browse files Browse the repository at this point in the history
Fixed that 'newValue' is not used in CollectionReplaceEvent<T>.
  • Loading branch information
neuecc committed Mar 13, 2015
2 parents cbe7e26 + 71df94f commit 0995bb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public CollectionReplaceEvent(int index, T oldValue, T newValue)
{
this.Index = index;
this.OldValue = oldValue;
this.NewValue = NewValue;
this.NewValue = newValue;
}
}

Expand Down

0 comments on commit 0995bb2

Please sign in to comment.