style: Fix a Clippy warning in write.rs
This commit is contained in:
parent
d98772e633
commit
875ee30f91
1 changed files with 2 additions and 2 deletions
|
@ -1320,10 +1320,10 @@ impl<W: Write + Seek> ZipWriter<W> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn index_by_name(&self, name: &str) -> ZipResult<usize> {
|
fn index_by_name(&self, name: &str) -> ZipResult<usize> {
|
||||||
Ok(self
|
self
|
||||||
.files
|
.files
|
||||||
.get_index_of(name)
|
.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
|
/// Adds another entry to the central directory referring to the same content as an existing
|
||||||
|
|
Loading…
Add table
Reference in a new issue