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/construct.rs | |
parent | 167a396293ef161223f47fe14563048e1e81f5be (diff) | |
download | servo-a42e11a95f7cdc0c45147f7861c7185b690ebbc2.tar.gz servo-a42e11a95f7cdc0c45147f7861c7185b690ebbc2.zip |
Replace the LayoutDataAccess trait by inherent methods.
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index 27181f34e52..2742c18d271 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -16,7 +16,7 @@ use block::BlockFlow; use context::LayoutContext; use css::node_style::StyledNode; -use data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataAccess, LayoutDataWrapper}; +use data::{HAS_NEWLY_CONSTRUCTED_FLOW, LayoutDataWrapper}; use floats::FloatKind; use flow::{Descendants, AbsDescendants}; use flow::{Flow, ImmutableFlowUtils, MutableFlowUtils, MutableOwnedFlowUtils}; |