diff options
author | Rizky Luthfianto <mrluthfianto@gmail.com> | 2015-11-10 09:07:25 +0700 |
---|---|---|
committer | Rizky Luthfianto <mrluthfianto@gmail.com> | 2015-11-10 09:07:25 +0700 |
commit | df02ed4050e37b587b8eae7f5920f9a43af4b350 (patch) | |
tree | 463c6b86136b99e19b47dbfa4fa51331e40b6fe4 /components/devtools/lib.rs | |
parent | aa62cc74d35b4535bb52972dc21a2deccadb6906 (diff) | |
download | servo-df02ed4050e37b587b8eae7f5920f9a43af4b350.tar.gz servo-df02ed4050e37b587b8eae7f5920f9a43af4b350.zip |
refactor(devtools/lib.rs): Remove unused import
Removed `RecvError` imports from #L57
Diffstat (limited to 'components/devtools/lib.rs')
-rw-r--r-- | components/devtools/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs index 3ed7116c3d5..0a15aa759a0 100644 --- a/components/devtools/lib.rs +++ b/components/devtools/lib.rs @@ -54,7 +54,7 @@ use std::collections::HashMap; use std::collections::hash_map::Entry::{Occupied, Vacant}; use std::error::Error; use std::net::{Shutdown, TcpListener, TcpStream}; -use std::sync::mpsc::{Receiver, RecvError, Sender, channel}; +use std::sync::mpsc::{Receiver, Sender, channel}; use std::sync::{Arc, Mutex}; use time::precise_time_ns; use util::task::spawn_named; |