style: Fix a Clippy warning in write.rs

This commit is contained in:
Chris Hennick 2024-05-02 12:12:01 -07:00 committed by Danny McClanahan
parent d98772e633
commit 875ee30f91
No known key found for this signature in database
GPG key ID: 6105C10F1A199CC7

View file

@ -1320,10 +1320,10 @@ impl<W: Write + Seek> ZipWriter<W> {
}
fn index_by_name(&self, name: &str) -> ZipResult<usize> {
Ok(self
self
.files
.get_index_of(name)
.ok_or(ZipError::FileNotFound)?)
.ok_or(ZipError::FileNotFound)
}
/// Adds another entry to the central directory referring to the same content as an existing