Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit dfc6029

Browse files
committed
Cleanup comments
1 parent 4e0a376 commit dfc6029

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

third_party/txt/src/txt/paragraph_txt.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,15 +1249,12 @@ void ParagraphTxt::UpdateLineMetrics(const SkFontMetrics& metrics,
12491249
// Disable first line ascent modifications.
12501250
if (line_number == 0 && !(paragraph_style_.bounding_line_height_behavior &
12511251
~BoundaryLineHeightBehavior::kDisableFirst)) {
1252-
FML_DLOG(ERROR) << "Ascent reset " << ascent << " > " << -metrics.fAscent;
12531252
ascent = -metrics.fAscent;
12541253
}
12551254
// Disable last line descent modifications.
12561255
if (line_number == line_limit - 1 &&
12571256
!(paragraph_style_.bounding_line_height_behavior &
12581257
~BoundaryLineHeightBehavior::kDisableLast)) {
1259-
FML_DLOG(ERROR) << "Descent reset" << descent << " > "
1260-
<< metrics.fDescent;
12611258
descent = metrics.fDescent;
12621259
}
12631260

0 commit comments

Comments
 (0)