style: fix a cargo fmt check

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

View file

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