Auto merge of #8442 - rilut:patch-1, r=Manishearth

refactor(devtools/lib.rs): Remove unused import

Removed `RecvError` imports from #L57. Fixes #8442.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8442)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-11-10 09:35:53 +05:30
commit cff9173208

View file

@ -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;