Clean up calls to layout_root.dump()

We had two calls, one of which was dead code.
This commit is contained in:
Keegan McAllister 2013-07-26 16:34:40 -07:00
parent c047a4b436
commit aae230c73f

View file

@ -228,7 +228,7 @@ impl LayoutTask {
}; };
debug!("layout: constructed Flow tree"); debug!("layout: constructed Flow tree");
debug!("", layout_root.dump()); debug!("%?", layout_root.dump());
// Perform the primary layout passes over the flow tree to compute the locations of all // Perform the primary layout passes over the flow tree to compute the locations of all
// the boxes. // the boxes.
@ -272,8 +272,6 @@ impl LayoutTask {
} // time(layout: display list building) } // time(layout: display list building)
} }
debug!("%?", layout_root.dump());
// Tell script that we're done. // Tell script that we're done.
// //
// FIXME(pcwalton): This should probably be *one* channel, but we can't fix this without // FIXME(pcwalton): This should probably be *one* channel, but we can't fix this without