LibWeb: Remove unnecessary DOM::Position destructor
This commit is contained in:
parent
3a7e26ef28
commit
ef371596a4
Notes:
sideshowbarker
2024-07-18 04:27:17 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/ef371596a4e
2 changed files with 0 additions and 6 deletions
|
@ -18,10 +18,6 @@ Position::Position(Node& node, unsigned offset)
|
|||
{
|
||||
}
|
||||
|
||||
Position::~Position()
|
||||
{
|
||||
}
|
||||
|
||||
String Position::to_string() const
|
||||
{
|
||||
if (!node())
|
||||
|
|
|
@ -18,8 +18,6 @@ public:
|
|||
Position() { }
|
||||
Position(Node&, unsigned offset);
|
||||
|
||||
~Position();
|
||||
|
||||
bool is_valid() const { return m_node; }
|
||||
|
||||
Node* node() { return m_node; }
|
||||
|
|
Loading…
Add table
Reference in a new issue