mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
LibWeb: Remove unused LineBox::ends_with_forced_line_break()
This commit is contained in:
parent
784dbdef8e
commit
8b369bf7bd
2 changed files with 0 additions and 6 deletions
|
@ -69,9 +69,4 @@ bool LineBox::is_empty_or_ends_in_whitespace() const
|
||||||
return m_fragments.last().ends_in_whitespace();
|
return m_fragments.last().ends_in_whitespace();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool LineBox::ends_with_forced_line_break() const
|
|
||||||
{
|
|
||||||
return is<BreakNode>(m_fragments.last().layout_node());
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,6 @@ public:
|
||||||
|
|
||||||
bool is_empty_or_ends_in_whitespace() const;
|
bool is_empty_or_ends_in_whitespace() const;
|
||||||
bool is_empty() const { return m_fragments.is_empty(); }
|
bool is_empty() const { return m_fragments.is_empty(); }
|
||||||
bool ends_with_forced_line_break() const;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend class BlockContainer;
|
friend class BlockContainer;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue