Skip to content

Commit

Permalink
More code review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Mads Gram committed Jul 8, 2023
1 parent 9341e35 commit 267e789
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ public bool Equals(MarkupCompatibilityAttributes? other)
return true;
}

return Equals(this.Ignorable, other.Ignorable) &&
Equals(this.ProcessContent, other.ProcessContent) &&
Equals(this.PreserveElements, other.PreserveElements) &&
Equals(this.PreserveAttributes, other.PreserveAttributes) &&
Equals(this.MustUnderstand, other.MustUnderstand);
return Equals(this.Ignorable, other.Ignorable)
&& Equals(this.ProcessContent, other.ProcessContent)
&& Equals(this.PreserveElements, other.PreserveElements)
&& Equals(this.PreserveAttributes, other.PreserveAttributes)
&& Equals(this.MustUnderstand, other.MustUnderstand);
}

/// <inheritdoc/>
Expand Down

0 comments on commit 267e789

Please sign in to comment.