Fix clippy::needless_borrow in the compiler
`x clippy compiler -Aclippy::all -Wclippy::needless_borrow --fix`. Then I had to remove a few unnecessary parens and muts that were exposed now.
This commit is contained in:
@@ -784,6 +784,6 @@ impl server::Server for Rustc<'_, '_> {
|
||||
}
|
||||
|
||||
fn with_symbol_string(symbol: &Self::Symbol, f: impl FnOnce(&str)) {
|
||||
f(&symbol.as_str())
|
||||
f(symbol.as_str())
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user