about summary refs log tree commit diff
path: root/src/rt/rust_dom.cpp
diff options
context:
space:
mode:
authorMichael Bebenita <mbebenita@mozilla.com>2010-07-28 12:36:59 -0700
committerGraydon Hoare <graydon@mozilla.com>2010-07-28 20:30:29 -0700
commit06b52b70db868285de5cf71166e5ce5b9dfb8e00 (patch)
tree001f3d749cc48a65a7f230399b6ca17a1392b766 /src/rt/rust_dom.cpp
parentcc4906ba79e1ad05ef8a34e1cc9cfbe5f96d4c6c (diff)
Fix typos in comments, delete obsolete comments and dead commented code.
Diffstat (limited to 'src/rt/rust_dom.cpp')
-rw-r--r--src/rt/rust_dom.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rt/rust_dom.cpp b/src/rt/rust_dom.cpp
index 205084ff263..7392833ddb8 100644
--- a/src/rt/rust_dom.cpp
+++ b/src/rt/rust_dom.cpp
@@ -217,8 +217,6 @@ void
 rust_dom::reap_dead_tasks() {
     for (size_t i = 0; i < dead_tasks.length(); ) {
         rust_task *task = dead_tasks[i];
-//        log(rust_log::TASK, "dead task 0x%" PRIxPTR " with ref_count: %d",
-//            task, task->ref_count);
         if (task->ref_count == 0) {
             I(this, !task->waiting_tasks.length());
             dead_tasks.swap_delete(task);