Fix Clippy warning and eliminate type alias that no longer simplifies

This commit is contained in:
Chris Hennick 2023-04-29 20:44:27 -07:00
parent 4ae76f6e07
commit 16af9ae253
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

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