diff --git a/gfx/thebes/gfxTextRun.cpp b/gfx/thebes/gfxTextRun.cpp index d9a979c2bf40..d8fcd3846d07 100644 --- a/gfx/thebes/gfxTextRun.cpp +++ b/gfx/thebes/gfxTextRun.cpp @@ -1332,9 +1332,8 @@ void gfxTextRun::SortGlyphRuns() { // A GlyphRun with the same font and orientation as the previous can // just be skipped; the last GlyphRun will cover its character range. MOZ_ASSERT(run.mFont != nullptr); - if (!prevRun || - !prevRun->Matches(run.mFont, run.mOrientation, run.mIsCJK, - run.mMatchType)) { + if (!prevRun || !prevRun->Matches(run.mFont, run.mOrientation, run.mIsCJK, + run.mMatchType)) { // If two font runs have the same character offset, Sort() will have // randomized their order! MOZ_ASSERT(prevRun == nullptr ||