style: Change len() == 0 to is_empty()

This commit is contained in:
Chris Hennick 2024-06-12 21:42:08 -07:00
parent 057224f9a2
commit 68f0a2f481
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -653,7 +653,7 @@ pub(crate) fn is_dir(filename: &str) -> bool {
pub(crate) fn path_to_string<T: AsRef<Path>>(path: T) -> Box<str> {
let mut maybe_original = None;
if let Some(original) = path.as_ref().to_str() {
if original.len() == 0 {
if original.is_empty() {
return String::new().into_boxed_str();
}
if (MAIN_SEPARATOR == '/' || !original[1..].contains(MAIN_SEPARATOR))