style: Remove unneeded parens

This commit is contained in:
Chris Hennick 2024-06-12 21:40:39 -07:00
parent 5bc1ba910f
commit 057224f9a2
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.len() == 0 {
return String::new().into_boxed_str();
}
if (MAIN_SEPARATOR == '/' || !original[1..].contains(MAIN_SEPARATOR))