diff options
author | Dan Fox <iamdanfox@gmail.com> | 2015-03-05 17:42:05 +0000 |
---|---|---|
committer | Dan Fox <iamdanfox@gmail.com> | 2015-03-05 17:42:05 +0000 |
commit | 559ff68b31eabdf1025fba2fcc386b504256a0b2 (patch) | |
tree | 48e10efbc7e3389b88d53666bd2e1b92ec198da0 /components/layout/parallel.rs | |
parent | 19686acdec7a8f6e36fe999a2896ed44718f42d6 (diff) | |
download | servo-559ff68b31eabdf1025fba2fcc386b504256a0b2.tar.gz servo-559ff68b31eabdf1025fba2fcc386b504256a0b2.zip |
Get rid of servo_util
Diffstat (limited to 'components/layout/parallel.rs')
-rw-r--r-- | components/layout/parallel.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/layout/parallel.rs b/components/layout/parallel.rs index 015ed2d08d5..ee2ca416cd1 100644 --- a/components/layout/parallel.rs +++ b/components/layout/parallel.rs @@ -20,9 +20,9 @@ use wrapper::{layout_node_to_unsafe_layout_node, layout_node_from_unsafe_layout_ use wrapper::{PostorderNodeMutTraversal, UnsafeLayoutNode}; use wrapper::{PreorderDomTraversal, PostorderDomTraversal}; -use servo_util::opts; -use servo_util::time::{TimeProfilerCategory, ProfilerMetadata, TimeProfilerChan, profile}; -use servo_util::workqueue::{WorkQueue, WorkUnit, WorkerProxy}; +use util::opts; +use util::time::{TimeProfilerCategory, ProfilerMetadata, TimeProfilerChan, profile}; +use util::workqueue::{WorkQueue, WorkUnit, WorkerProxy}; use std::mem; use std::ptr; use std::sync::atomic::{AtomicInt, Ordering}; |