From 46333b2d61c093381f86bdb87f32a367480ff19a Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sun, 21 May 2023 11:39:22 -0700 Subject: [PATCH] Fix Clippy warning: `rev().next()` -> `next_back()` --- src/read.rs | 3 +-- src/read/stream.rs | 7 +++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/read.rs b/src/read.rs index cc95558c..5cbba0ec 100644 --- a/src/read.rs +++ b/src/read.rs @@ -957,8 +957,7 @@ impl<'a> ZipFile<'a> { pub fn is_dir(&self) -> bool { self.name() .chars() - .rev() - .next() + .next_back() .map_or(false, |c| c == '/' || c == '\\') } diff --git a/src/read/stream.rs b/src/read/stream.rs index 5a01b23f..1075c423 100644 --- a/src/read/stream.rs +++ b/src/read/stream.rs @@ -1,6 +1,6 @@ use std::fs; use std::io::{self, Read}; -use std::path::Path; +use std::path::{Path, PathBuf}; use super::{ central_header_to_zip_file_inner, read_zipfile_from_stream, spec, ZipError, ZipFile, @@ -162,7 +162,7 @@ impl ZipStreamFileMetadata { /// [`ZipFile::enclosed_name`] is the better option in most scenarios. /// /// [`ParentDir`]: `Component::ParentDir` - pub fn mangled_name(&self) -> ::std::path::PathBuf { + pub fn mangled_name(&self) -> PathBuf { self.0.file_name_sanitized() } @@ -184,8 +184,7 @@ impl ZipStreamFileMetadata { pub fn is_dir(&self) -> bool { self.name() .chars() - .rev() - .next() + .next_back() .map_or(false, |c| c == '/' || c == '\\') }