removed ready func

This commit is contained in:
NikVolf
2016-04-12 07:17:57 +03:00
parent 0c42126b8f
commit 5609b555d2
2 changed files with 0 additions and 7 deletions

View File

@@ -79,11 +79,7 @@ pub fn invoke<W>(method_num: u16, params: &Option<Vec<u8>>, w: &mut W) where W:
/// IpcSocket
pub trait IpcSocket: Read + Write + Sync {
fn ready(&self) -> AtomicBool;
}
impl IpcSocket for ::devtools::TestSocket {
fn ready(&self) -> AtomicBool {
AtomicBool::new(true)
}
}