style: Fix a Clippy warning in read.rs

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

View file

@ -717,7 +717,7 @@ impl<R: Read + Seek> ZipArchive<R> {
/// Get the index of a file entry by name, if it's present.
#[inline(always)]
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.