diff --git a/src/write.rs b/src/write.rs index d0f5165a..aebb1724 100644 --- a/src/write.rs +++ b/src/write.rs @@ -46,8 +46,6 @@ enum GenericZipWriter { Zstd(ZstdEncoder<'static, W>), } -type FileRef = ZipFileData; - // Put the struct declaration in a private module to convince rustdoc to display ZipWriter nicely pub(crate) mod zip_writer { use super::*; @@ -82,7 +80,7 @@ pub(crate) mod zip_writer { /// ``` pub struct ZipWriter { pub(super) inner: GenericZipWriter, - pub(super) files: Vec, + pub(super) files: Vec, pub(super) files_by_name: HashMap, pub(super) stats: ZipWriterStats, pub(super) writing_to_file: bool, @@ -463,7 +461,7 @@ impl ZipWriter { let writer = self.inner.get_plain(); if !self.writing_raw { - let mut file = match self.files.last_mut() { + let file = match self.files.last_mut() { None => return Ok(()), Some(f) => f, };