From 48a2239f60e83759e67fff90a4ce7988f440383b Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 30 Aug 2021 17:22:54 +0100 Subject: [PATCH] LibWeb: Remove commented-out dbgln This is unrelated to the PR I'm working on, but keeps getting reformatted because clang-format wants comments to start with a space. --- Userland/Libraries/LibWeb/DOM/Node.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/DOM/Node.cpp b/Userland/Libraries/LibWeb/DOM/Node.cpp index 10fc69c0eb1..0490d079a25 100644 --- a/Userland/Libraries/LibWeb/DOM/Node.cpp +++ b/Userland/Libraries/LibWeb/DOM/Node.cpp @@ -524,7 +524,6 @@ void Node::set_needs_style_update(bool value) if (m_needs_style_update) { for (auto* ancestor = parent(); ancestor; ancestor = ancestor->parent()) { - //dbgln("{}", ancestor->node_name()); ancestor->m_child_needs_style_update = true; } document().schedule_style_update();