diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-06-22 11:34:31 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-06-22 11:34:31 +0200 |
commit | a42e11a95f7cdc0c45147f7861c7185b690ebbc2 (patch) | |
tree | f455739f42c836195d7ed59ec3ff8fef4e2983b8 /components/layout/parallel.rs | |
parent | 167a396293ef161223f47fe14563048e1e81f5be (diff) | |
download | servo-a42e11a95f7cdc0c45147f7861c7185b690ebbc2.tar.gz servo-a42e11a95f7cdc0c45147f7861c7185b690ebbc2.zip |
Replace the LayoutDataAccess trait by inherent methods.
Diffstat (limited to 'components/layout/parallel.rs')
-rw-r--r-- | components/layout/parallel.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/parallel.rs b/components/layout/parallel.rs index 879c2a1eea2..9cc60f31aee 100644 --- a/components/layout/parallel.rs +++ b/components/layout/parallel.rs @@ -12,7 +12,7 @@ use context::{LayoutContext, SharedLayoutContextWrapper, SharedLayoutContext}; use flow::{Flow, MutableFlowUtils, PreorderFlowTraversal, PostorderFlowTraversal}; use flow; use flow_ref::FlowRef; -use data::{LayoutDataAccess, LayoutDataWrapper}; +use data::LayoutDataWrapper; use traversal::{BubbleISizes, AssignISizes, AssignBSizesAndStoreOverflow}; use traversal::{ComputeAbsolutePositions, BuildDisplayList}; use traversal::{RecalcStyleForNode, ConstructFlows}; |