Delete comments

This commit is contained in:
Carl Lerche
2017-08-09 11:47:15 -07:00
parent 0bf0e79132
commit 87c4d36b0c
3 changed files with 0 additions and 203 deletions

View File

@@ -112,18 +112,6 @@ impl<T> FramedRead<T> {
}
}
/*
impl<T: ApplySettings> ApplySettings for FramedRead<T> {
fn apply_local_settings(&mut self, set: &frame::SettingSet) -> Result<(), ConnectionError> {
self.inner.get_mut().apply_local_settings(set)
}
fn apply_remote_settings(&mut self, set: &frame::SettingSet) -> Result<(), ConnectionError> {
self.inner.get_mut().apply_remote_settings(set)
}
}
*/
impl<T> futures::Stream for FramedRead<T>
where T: AsyncRead,
{