Remove debug statements

This commit is contained in:
+merlan #flirora 2025-02-18 16:00:46 -05:00
parent 2fd8046405
commit e48811a6d4

View File

@ -110,10 +110,10 @@ pub fn linebreak<'a>(
p: &'a Preparation<'a>, p: &'a Preparation<'a>,
width: Abs, width: Abs,
) -> Vec<Line<'a>> { ) -> Vec<Line<'a>> {
dbg!(match p.config.linebreaks { match p.config.linebreaks {
Linebreaks::Simple => linebreak_simple(engine, p, width), Linebreaks::Simple => linebreak_simple(engine, p, width),
Linebreaks::Optimized => linebreak_optimized(engine, p, width), Linebreaks::Optimized => linebreak_optimized(engine, p, width),
}) }
} }
/// Performs line breaking in simple first-fit style. This means that we build /// Performs line breaking in simple first-fit style. This means that we build