chore: partial revert - only &str has chars(), but Box<str> should auto-deref

This commit is contained in:
Chris Hennick 2024-05-15 16:51:12 -07:00
parent d78f127039
commit 267ab432cf
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -227,7 +227,7 @@ impl Zip64CentralDirectoryEnd {
}
}
pub(crate) fn is_dir<T: AsRef<str>>(filename: T) -> bool {
pub(crate) fn is_dir(filename: &str) -> bool {
filename
.chars()
.next_back()