Skip to content

Commit 9043ea6

Browse files
authored
Merge pull request #62 from dotnet-campus/t/bot/fix-codeformatting
[Bot] Automated PR to fix formatting errors
2 parents 89c2fd7 + 435e63f commit 9043ea6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • src/DocumentFormat.OpenXml.Flatten/DocumentFormat.OpenXml.Flatten/Compatibilities/Packaging

src/DocumentFormat.OpenXml.Flatten/DocumentFormat.OpenXml.Flatten/Compatibilities/Packaging/ContentType.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -436,9 +436,9 @@ private static void ValidateQuotedText(string quotedText)
436436
if (quotedText[i] <= ' ' || quotedText[i] >= 0xFF)
437437
throw new ArgumentException(quotedText[i].ToString());
438438
else
439-
if (quotedText[i] == '"' &&
440-
(i == 0 || quotedText[i - 1] != '\\'))
441-
throw new ArgumentException(quotedText[i].ToString());
439+
if (quotedText[i] == '"' &&
440+
(i == 0 || quotedText[i - 1] != '\\'))
441+
throw new ArgumentException(quotedText[i].ToString());
442442
}
443443
}
444444

0 commit comments

Comments
 (0)