chore: clippy-2

This commit is contained in:
jimmyfraiture
2025-09-22 13:21:21 +01:00
parent 5996ee0e5f
commit 3b526789b7
79 changed files with 657 additions and 599 deletions

View File

@@ -573,7 +573,7 @@ impl EventProcessor for EventProcessorWithHumanOutput {
}
fn escape_command(command: &[String]) -> String {
try_join(command.iter().map(|s| s.as_str())).unwrap_or_else(|_| command.join(" "))
try_join(command.iter().map(std::string::String::as_str)).unwrap_or_else(|_| command.join(" "))
}
fn format_file_change(change: &FileChange) -> &'static str {