瀏覽代碼

LibCore: Remove leftover debug spam in CObject::remove_child()

Andreas Kling 5 年之前
父節點
當前提交
5614cdf308
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      Libraries/LibCore/CObject.cpp

+ 0 - 1
Libraries/LibCore/CObject.cpp

@@ -67,7 +67,6 @@ void CObject::add_child(CObject& object)
 void CObject::remove_child(CObject& object)
 {
     for (int i = 0; i < m_children.size(); ++i) {
-        dbg() << i << "] " << m_children.at(i);
         if (m_children.ptr_at(i).ptr() == &object) {
             // NOTE: We protect the child so it survives the handling of ChildRemoved.
             NonnullRefPtr<CObject> protector = object;