Skip to content

Commit

Permalink
refactor(devtools/lib.rs): Remove unused import
Browse files Browse the repository at this point in the history
Removed `RecvError` imports from #L57
  • Loading branch information
luthfianto committed Nov 10, 2015
1 parent aa62cc7 commit df02ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/devtools/lib.rs
Expand Up @@ -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;
Expand Down

0 comments on commit df02ed4

Please sign in to comment.