diff --git a/src/backup/catalog.rs b/src/backup/catalog.rs index 4bb7c2f4..b3e248b0 100644 --- a/src/backup/catalog.rs +++ b/src/backup/catalog.rs @@ -299,12 +299,6 @@ impl CatalogReader { Self { reader } } - fn next_byte(reader: &mut C) -> Result { - let mut buf = [0u8; 1]; - reader.read_exact(&mut buf)?; - Ok(buf[0]) - } - pub fn dump(&mut self) -> Result<(), Error> { self.reader.seek(SeekFrom::End(-8))?;