diff options
author | Florian Strübe <f.struebe@yatego.com> | 2016-01-17 13:18:15 +0100 |
---|---|---|
committer | Florian Strübe <f.struebe@yatego.com> | 2016-01-17 13:18:15 +0100 |
commit | 6502820ab3c3b6ec6a8d61b8ffbc331aafa5d0b9 (patch) | |
tree | 3d04e1a7449757cd0137e4ccc185317a72137b73 | |
parent | 5a954d2492195aab2f3bd5a8d2775ef5c586689d (diff) | |
download | servo-6502820ab3c3b6ec6a8d61b8ffbc331aafa5d0b9.tar.gz servo-6502820ab3c3b6ec6a8d61b8ffbc331aafa5d0b9.zip |
Removed unused imports from devtools crate
-rw-r--r-- | components/devtools/actors/console.rs | 1 | ||||
-rw-r--r-- | components/devtools/actors/inspector.rs | 1 | ||||
-rw-r--r-- | components/devtools/actors/timeline.rs | 1 | ||||
-rw-r--r-- | components/devtools/lib.rs | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/components/devtools/actors/console.rs b/components/devtools/actors/console.rs index 0b0c068d81f..31c404966e8 100644 --- a/components/devtools/actors/console.rs +++ b/components/devtools/actors/console.rs @@ -20,7 +20,6 @@ use rustc_serialize::json::{self, Json, ToJson}; use std::cell::RefCell; use std::collections::BTreeMap; use std::net::TcpStream; -use std::sync::mpsc::channel; trait EncodableConsoleMessage { fn encode(&self) -> json::EncodeResult<String>; diff --git a/components/devtools/actors/inspector.rs b/components/devtools/actors/inspector.rs index 71f56522bcc..7dd5def34cf 100644 --- a/components/devtools/actors/inspector.rs +++ b/components/devtools/actors/inspector.rs @@ -16,7 +16,6 @@ use rustc_serialize::json::{self, Json, ToJson}; use std::cell::RefCell; use std::collections::BTreeMap; use std::net::TcpStream; -use std::sync::mpsc::channel; pub struct InspectorActor { pub name: String, diff --git a/components/devtools/actors/timeline.rs b/components/devtools/actors/timeline.rs index f639d24ead9..945ae6ad322 100644 --- a/components/devtools/actors/timeline.rs +++ b/components/devtools/actors/timeline.rs @@ -14,7 +14,6 @@ use protocol::JsonPacketStream; use rustc_serialize::{Encodable, Encoder, json}; use std::cell::RefCell; use std::net::TcpStream; -use std::sync::mpsc::channel; use std::sync::{Arc, Mutex}; use std::thread; use std::time::Duration; diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs index 0d1e5aac6bd..5783c645b27 100644 --- a/components/devtools/lib.rs +++ b/components/devtools/lib.rs @@ -52,7 +52,6 @@ use std::borrow::ToOwned; use std::cell::RefCell; 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, Sender, channel}; use std::sync::{Arc, Mutex}; |