diff options
Diffstat (limited to 'components/net/cookie.rs')
-rw-r--r-- | components/net/cookie.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/net/cookie.rs b/components/net/cookie.rs index d7d68196d4a..5b9089cc1d3 100644 --- a/components/net/cookie.rs +++ b/components/net/cookie.rs @@ -7,12 +7,12 @@ use crate::cookie_rs; use hyper_serde::{self, Serde}; -use net_traits::CookieSource; use net_traits::pub_domains::is_pub_domain; +use net_traits::CookieSource; use servo_url::ServoUrl; use std::borrow::ToOwned; use std::net::{Ipv4Addr, Ipv6Addr}; -use time::{Tm, now, at, Duration}; +use time::{at, now, Duration, Tm}; /// A stored cookie that wraps the definition in cookie-rs. This is used to implement /// various behaviours defined in the spec that rely on an associated request URL, |