aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/storage_task.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-01-29 12:16:41 +0100
committerMs2ger <ms2ger@gmail.com>2015-01-29 12:16:41 +0100
commit505159a46446340b8f0c860d8dc100df8902e2bf (patch)
tree7264d02ee31b4055898697f47b5f2436d04b192e /components/net/storage_task.rs
parent221a343883f510c7743908136438f5ed40bd17ed (diff)
downloadservo-505159a46446340b8f0c860d8dc100df8902e2bf.tar.gz
servo-505159a46446340b8f0c860d8dc100df8902e2bf.zip
Import the util crate as util rather than servo_util.
This used to conflict with the util crate from the standard library, which has long since been removed. The import in layout has not been changed because of a conflict with the util mod there.
Diffstat (limited to 'components/net/storage_task.rs')
-rw-r--r--components/net/storage_task.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/net/storage_task.rs b/components/net/storage_task.rs
index ac65fa65bc0..d7e7ec69c77 100644
--- a/components/net/storage_task.rs
+++ b/components/net/storage_task.rs
@@ -8,8 +8,8 @@ use std::collections::BTreeMap;
use std::sync::mpsc::{channel, Receiver, Sender};
use url::Url;
-use servo_util::str::DOMString;
-use servo_util::task::spawn_named;
+use util::str::DOMString;
+use util::task::spawn_named;
/// Request operations on the storage data associated with a particular url
pub enum StorageTaskMsg {