Refactor
Closed this issue · 0 comments
haven1433 commented
miniDB/MiniDB/BaseModelItem.cs
Line 56 in 04bbe81
Consider replacing this double if statement with just one:
if (oldValue == value || oldValue?.Equals(value) ?? false)
this handily covers the three cases you're worried about: both null, one null, none null.