Skip to content

Commit 267e789

Browse files
author
Mads Gram
committed
More code review comments
1 parent 9341e35 commit 267e789

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/DocumentFormat.OpenXml.Framework/MarkupCompatibilityAttributes.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ public bool Equals(MarkupCompatibilityAttributes? other)
6565
return true;
6666
}
6767

68-
return Equals(this.Ignorable, other.Ignorable) &&
69-
Equals(this.ProcessContent, other.ProcessContent) &&
70-
Equals(this.PreserveElements, other.PreserveElements) &&
71-
Equals(this.PreserveAttributes, other.PreserveAttributes) &&
72-
Equals(this.MustUnderstand, other.MustUnderstand);
68+
return Equals(this.Ignorable, other.Ignorable)
69+
&& Equals(this.ProcessContent, other.ProcessContent)
70+
&& Equals(this.PreserveElements, other.PreserveElements)
71+
&& Equals(this.PreserveAttributes, other.PreserveAttributes)
72+
&& Equals(this.MustUnderstand, other.MustUnderstand);
7373
}
7474

7575
/// <inheritdoc/>

0 commit comments

Comments
 (0)