1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:07:46 +00:00

LibWeb: Remove accidentally committed changes from b72f067f0d

This commit is contained in:
Andreas Kling 2021-01-28 08:56:02 +01:00
parent 5ff355c0cd
commit 5a58f42e3c
3 changed files with 1 additions and 8 deletions

View file

@ -183,12 +183,6 @@ RefPtr<Node> Node::append_child(NonnullRefPtr<Node> node, bool notify)
return node;
}
RefPtr<Node> Node::remove_child(NonnullRefPtr<Node> node)
{
TreeNode<Node>::remove_child(node);
return node;
}
RefPtr<Node> Node::insert_before(NonnullRefPtr<Node> node, RefPtr<Node> child, bool notify)
{
if (!child)