1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:27:34 +00:00

LibWeb: Remove unused LineBox::ends_with_forced_line_break()

This commit is contained in:
Andreas Kling 2022-02-26 08:33:45 +01:00
parent 784dbdef8e
commit 8b369bf7bd
2 changed files with 0 additions and 6 deletions

View file

@ -69,9 +69,4 @@ bool LineBox::is_empty_or_ends_in_whitespace() const
return m_fragments.last().ends_in_whitespace();
}
bool LineBox::ends_with_forced_line_break() const
{
return is<BreakNode>(m_fragments.last().layout_node());
}
}