aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/origin.rs
diff options
context:
space:
mode:
authorUK992 <urbankrajnc92@gmail.com>2016-09-08 17:47:32 +0200
committerUK992 <urbankrajnc92@gmail.com>2016-09-09 04:55:19 +0200
commit93a103ba7306b578841b73a0ecfbccaad8fc78c1 (patch)
treea8855004b4309212182505b0cf72f116d846c4cb /components/script/origin.rs
parent875981ece592b03bcf06f16b6613ddabfa11133f (diff)
downloadservo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.tar.gz
servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.zip
Reorder `use` statements
Diffstat (limited to 'components/script/origin.rs')
-rw-r--r--components/script/origin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/origin.rs b/components/script/origin.rs
index 9b0ba7738e2..21204980e26 100644
--- a/components/script/origin.rs
+++ b/components/script/origin.rs
@@ -3,8 +3,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use std::sync::Arc;
+use url::{Host, Url};
use url::Origin as UrlOrigin;
-use url::{Url, Host};
/// A representation of an [origin](https://html.spec.whatwg.org/multipage/#origin-2).
#[derive(HeapSizeOf, JSTraceable)]