From 267e78918454ea648230ffeb63205be69523cfd1 Mon Sep 17 00:00:00 2001 From: Mads Gram Date: Sat, 8 Jul 2023 13:07:04 +0200 Subject: [PATCH] More code review comments --- .../MarkupCompatibilityAttributes.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/DocumentFormat.OpenXml.Framework/MarkupCompatibilityAttributes.cs b/src/DocumentFormat.OpenXml.Framework/MarkupCompatibilityAttributes.cs index fd7cf6da4..f4f0648d7 100644 --- a/src/DocumentFormat.OpenXml.Framework/MarkupCompatibilityAttributes.cs +++ b/src/DocumentFormat.OpenXml.Framework/MarkupCompatibilityAttributes.cs @@ -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); } ///