Don't fail in TcpStream.flush

This commit is contained in:
Steven Fackler 2013-09-10 21:43:47 -07:00
parent 8cf60de758
commit 412ab49557

View File

@ -93,7 +93,7 @@ impl Writer for TcpStream {
}
}
fn flush(&mut self) { fail!() }
fn flush(&mut self) { /* no-op */ }
}
pub struct TcpListener(~RtioTcpListenerObject);