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/layout_task.rs | |
parent | 167a396293ef161223f47fe14563048e1e81f5be (diff) | |
download | servo-a42e11a95f7cdc0c45147f7861c7185b690ebbc2.tar.gz servo-a42e11a95f7cdc0c45147f7861c7185b690ebbc2.zip |
Replace the LayoutDataAccess trait by inherent methods.
Diffstat (limited to 'components/layout/layout_task.rs')
-rw-r--r-- | components/layout/layout_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/layout_task.rs b/components/layout/layout_task.rs index f4533dbaad5..178d08319a8 100644 --- a/components/layout/layout_task.rs +++ b/components/layout/layout_task.rs @@ -11,7 +11,7 @@ use animation; use construct::ConstructionResult; use context::{SharedLayoutContext, SharedLayoutContextWrapper, heap_size_of_local_context}; use css::node_style::StyledNode; -use data::{LayoutDataAccess, LayoutDataWrapper}; +use data::LayoutDataWrapper; use display_list_builder::ToGfxColor; use flow::{self, Flow, ImmutableFlowUtils, MutableFlowUtils, MutableOwnedFlowUtils}; use flow_ref::FlowRef; |