mirror of
https://github.com/typst/typst
synced 2025-05-17 02:25:27 +08:00
Remove debug statements
This commit is contained in:
parent
2fd8046405
commit
e48811a6d4
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user