From d98772e6339606ab2adebcff15f392b992001f24 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 2 May 2024 12:11:00 -0700 Subject: [PATCH] style: Fix a Clippy warning in read.rs --- src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read.rs b/src/read.rs index d2e8e114..d05f61b1 100644 --- a/src/read.rs +++ b/src/read.rs @@ -717,7 +717,7 @@ impl ZipArchive { /// Get the index of a file entry by name, if it's present. #[inline(always)] pub fn index_for_name(&self, name: &str) -> Option { - 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.