style: Fix a Clippy warning in read.rs
This commit is contained in:
parent
d1695053f5
commit
d98772e633
1 changed files with 1 additions and 1 deletions
|
@ -717,7 +717,7 @@ impl<R: Read + Seek> ZipArchive<R> {
|
||||||
/// Get the index of a file entry by name, if it's present.
|
/// Get the index of a file entry by name, if it's present.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn index_for_name(&self, name: &str) -> Option<usize> {
|
pub fn index_for_name(&self, name: &str) -> Option<usize> {
|
||||||
self.shared.files.get_index_of(&*name)
|
self.shared.files.get_index_of(name)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the index of a file entry by path, if it's present.
|
/// Get the index of a file entry by path, if it's present.
|
||||||
|
|
Loading…
Add table
Reference in a new issue