소스 검색

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.
Sam Atkins 3 년 전
부모
커밋
48a2239f60
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      Userland/Libraries/LibWeb/DOM/Node.cpp

+ 0 - 1
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();