Skip to content

Commit 81b67f7

Browse files
committed
Removed debug logging that doesn't belong
1 parent d91df98 commit 81b67f7

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

textord/tordmain.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -772,16 +772,12 @@ void Textord::TransferDiacriticsToBlockGroups(BLOBNBOX_LIST* diacritic_blobs,
772772
PointerVector<WordWithBox> word_ptrs;
773773
for (int g = 0; g < groups.size(); ++g) {
774774
const BlockGroup* group = groups[g];
775-
tprintf("group %d, xh=%g, %d blocks\n", g, group->min_xheight,
776-
group->blocks.size());
777775
WordGrid word_grid(group->min_xheight, group->bounding_box.botleft(),
778776
group->bounding_box.topright());
779777
for (int b = 0; b < group->blocks.size(); ++b) {
780-
tprintf("block %d, %d rows\n", b, group->blocks[b]->row_list()->length());
781778
ROW_IT row_it(group->blocks[b]->row_list());
782779
for (row_it.mark_cycle_pt(); !row_it.cycled_list(); row_it.forward()) {
783780
ROW* row = row_it.data();
784-
tprintf("%d words in row\n", row->word_list()->length());
785781
// Put the words of the row into the grid.
786782
WERD_IT w_it(row->word_list());
787783
for (w_it.mark_cycle_pt(); !w_it.cycled_list(); w_it.forward()) {

0 commit comments

Comments
 (0)