From 875ee30f9128c89b665a8d8de600ef74e708136d Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 2 May 2024 12:12:01 -0700 Subject: [PATCH] style: Fix a Clippy warning in write.rs --- src/write.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/write.rs b/src/write.rs index 72907a11..48699f0f 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1320,10 +1320,10 @@ impl ZipWriter { } fn index_by_name(&self, name: &str) -> ZipResult { - Ok(self + self .files .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