diff options
author | Hugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr> | 2015-09-18 22:02:04 +0200 |
---|---|---|
committer | Hugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr> | 2015-09-18 22:02:04 +0200 |
commit | 6565e7b02fafea933e27e59bed1db876b56ac005 (patch) | |
tree | 0b371fa5d7fd2674793843f4c3034a9ff81c25e9 /components/net/lib.rs | |
parent | e81e91207cb87ade4eeaa99917eaecd0f5ecd00d (diff) | |
download | servo-6565e7b02fafea933e27e59bed1db876b56ac005.tar.gz servo-6565e7b02fafea933e27e59bed1db876b56ac005.zip |
Issue #7390 correct the order of mod declaration
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index 5c9378114fe..c0077d2e0f0 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -27,22 +27,22 @@ extern crate url; extern crate uuid; pub mod about_loader; -pub mod file_loader; -pub mod http_loader; -pub mod data_loader; pub mod cookie; pub mod cookie_storage; +pub mod data_loader; +pub mod file_loader; +pub mod hsts; +pub mod http_loader; pub mod image_cache_task; +pub mod mime_classifier; pub mod pub_domains; pub mod resource_task; -pub mod hsts; pub mod storage_task; -pub mod mime_classifier; /// An implementation of the [Fetch spec](https://fetch.spec.whatwg.org/) pub mod fetch { #![allow(dead_code, unused)] // XXXManishearth this is only temporary until the Fetch mod starts being used + pub mod cors_cache; pub mod request; pub mod response; - pub mod cors_cache; } |