diff options
Diffstat (limited to 'components/net/hsts.rs')
-rw-r--r-- | components/net/hsts.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/net/hsts.rs b/components/net/hsts.rs index b64b797c754..662ec7b8088 100644 --- a/components/net/hsts.rs +++ b/components/net/hsts.rs @@ -3,9 +3,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use net_traits::IncludeSubdomains; -use rustc_serialize::json::{decode}; +use rustc_serialize::json::decode; use std::net::{Ipv4Addr, Ipv6Addr}; -use std::str::{from_utf8}; +use std::str::from_utf8; use time; use url::Url; use util::resource_files::read_resource_file; |