diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-05-15 15:41:16 -0700 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-05-15 15:41:16 -0700 |
commit | 2c674d0397927ef6563feb70e54f46815af55600 (patch) | |
tree | 1f7bf57cbb19c12784ec794caa1011195db38a1b /components/layout/construct.rs | |
parent | c193af8c32e87c146f5a45d06d3c6086f56be820 (diff) | |
parent | 2f7ed1d73e621a2f2fb1cbb73a39394c5747f0e2 (diff) | |
download | servo-2c674d0397927ef6563feb70e54f46815af55600.tar.gz servo-2c674d0397927ef6563feb70e54f46815af55600.zip |
Auto merge of #11192 - perlun:remove-unused-imports, r=Manishearth
Removed unused imports
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #11185
- [X] These changes do not require tests because it only removes dead code.
----
This fixes #11185.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11192)
<!-- Reviewable:end -->
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)] |