style: fix a cargo fmt check
This commit is contained in:
parent
875ee30f91
commit
20bfcd960c
1 changed files with 1 additions and 4 deletions
|
@ -1320,10 +1320,7 @@ impl<W: Write + Seek> ZipWriter<W> {
|
|||
}
|
||||
|
||||
fn index_by_name(&self, name: &str) -> ZipResult<usize> {
|
||||
self
|
||||
.files
|
||||
.get_index_of(name)
|
||||
.ok_or(ZipError::FileNotFound)
|
||||
self.files.get_index_of(name).ok_or(ZipError::FileNotFound)
|
||||
}
|
||||
|
||||
/// Adds another entry to the central directory referring to the same content as an existing
|
||||
|
|
Loading…
Add table
Reference in a new issue