mshafer1/miniDB

Refactor

Closed this issue · 0 comments

if (oldVal == null && value == null)

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.