From 2fa2a3b5a939d5c0773c943161dd9231f745b3e7 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Fri, 21 Aug 2015 21:56:10 +0200 Subject: [PATCH] Sort imports. --- components/layout/flex.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/layout/flex.rs b/components/layout/flex.rs index b3c84d5328f..c1a79a02a9f 100644 --- a/components/layout/flex.rs +++ b/components/layout/flex.rs @@ -11,12 +11,12 @@ use context::LayoutContext; use display_list_builder::FlexFlowDisplayListBuilding; use floats::FloatKind; use flow; -use flow::{Flow, FlowClass, OpaqueFlow}; -use flow::{HAS_LEFT_FLOATED_DESCENDANTS, HAS_RIGHT_FLOATED_DESCENDANTS}; -use flow::ImmutableFlowUtils; use flow::INLINE_POSITION_IS_STATIC; use flow::IS_ABSOLUTELY_POSITIONED; +use flow::ImmutableFlowUtils; use flow::mut_base; +use flow::{Flow, FlowClass, OpaqueFlow}; +use flow::{HAS_LEFT_FLOATED_DESCENDANTS, HAS_RIGHT_FLOATED_DESCENDANTS}; use fragment::{Fragment, FragmentBorderBoxIterator}; use incremental::{REFLOW, REFLOW_OUT_OF_FLOW}; use layout_debug; @@ -27,13 +27,13 @@ use style::values::computed::LengthOrPercentageOrAuto; use euclid::{Point2D, Rect}; use gfx::display_list::DisplayList; +use model::MaybeAuto; use std::cmp::max; use std::sync::Arc; use style::properties::ComputedValues; use util::geometry::Au; use util::logical_geometry::LogicalSize; use util::opts; -use model::MaybeAuto; // A mode describes which logical axis a flex axis is parallel with. // The logical axises are inline and block, the flex axises are main and cross.