Fix Clippy warning: rev().next() -> next_back()

This commit is contained in:
Chris Hennick 2023-05-21 11:39:22 -07:00
parent a86a1f99a3
commit 46333b2d61
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
2 changed files with 4 additions and 6 deletions

View file

@ -957,8 +957,7 @@ impl<'a> ZipFile<'a> {
pub fn is_dir(&self) -> bool { pub fn is_dir(&self) -> bool {
self.name() self.name()
.chars() .chars()
.rev() .next_back()
.next()
.map_or(false, |c| c == '/' || c == '\\') .map_or(false, |c| c == '/' || c == '\\')
} }

View file

@ -1,6 +1,6 @@
use std::fs; use std::fs;
use std::io::{self, Read}; use std::io::{self, Read};
use std::path::Path; use std::path::{Path, PathBuf};
use super::{ use super::{
central_header_to_zip_file_inner, read_zipfile_from_stream, spec, ZipError, ZipFile, 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. /// [`ZipFile::enclosed_name`] is the better option in most scenarios.
/// ///
/// [`ParentDir`]: `Component::ParentDir` /// [`ParentDir`]: `Component::ParentDir`
pub fn mangled_name(&self) -> ::std::path::PathBuf { pub fn mangled_name(&self) -> PathBuf {
self.0.file_name_sanitized() self.0.file_name_sanitized()
} }
@ -184,8 +184,7 @@ impl ZipStreamFileMetadata {
pub fn is_dir(&self) -> bool { pub fn is_dir(&self) -> bool {
self.name() self.name()
.chars() .chars()
.rev() .next_back()
.next()
.map_or(false, |c| c == '/' || c == '\\') .map_or(false, |c| c == '/' || c == '\\')
} }