Remove defunct and dead try_read

This commit is contained in:
Deirdre Connolly 2019-09-18 17:01:07 -04:00
parent b78390b98c
commit 7020a31950
1 changed files with 0 additions and 10 deletions

View File

@ -334,16 +334,6 @@ impl Message {
Ok(())
}
/// Try to read `self` from the given `reader`.
#[allow(dead_code)]
fn try_read<R: io::Read>(
_reader: R,
_magic: Magic,
_version: Version,
) -> Result<Self, SerializationError> {
unimplemented!()
}
}
impl Message {