diff options
author | Per Lundberg <perlun@gmail.com> | 2016-05-15 22:24:26 +0300 |
---|---|---|
committer | Per Lundberg <perlun@gmail.com> | 2016-05-15 22:24:26 +0300 |
commit | 2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2 (patch) | |
tree | da7cdf137b99a2da034c92e455317143781863d6 /components/layout/construct.rs | |
parent | 7bede60272a79fe094ea81979044b4d6eceeada4 (diff) | |
download | servo-2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2.tar.gz servo-2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2.zip |
Removed unused imports
This fixes #11185.
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index dc6ca7b3cb1..2a75c4025cb 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -20,7 +20,7 @@ use data::{HAS_NEWLY_CONSTRUCTED_FLOW, PrivateLayoutData}; use flex::FlexFlow; use floats::FloatKind; use flow::{MutableFlowUtils, MutableOwnedFlowUtils, CAN_BE_FRAGMENTED}; -use flow::{self, AbsoluteDescendants, Flow, IS_ABSOLUTELY_POSITIONED, ImmutableFlowUtils}; +use flow::{self, AbsoluteDescendants, IS_ABSOLUTELY_POSITIONED, ImmutableFlowUtils}; use flow_ref::{self, FlowRef}; use fragment::{CanvasFragmentInfo, ImageFragmentInfo, InlineAbsoluteFragmentInfo}; use fragment::{Fragment, GeneratedContentInfo, IframeFragmentInfo}; @@ -60,7 +60,7 @@ use traversal::PostorderNodeMutTraversal; use url::Url; use util::linked_list; use util::opts; -use wrapper::{LayoutNode, PseudoElementType, TextContent, ThreadSafeLayoutElement, ThreadSafeLayoutNode}; +use wrapper::{PseudoElementType, TextContent, ThreadSafeLayoutElement, ThreadSafeLayoutNode}; /// The results of flow construction for a DOM node. #[derive(Clone)] |