Enable clippy::unnecessary_to_owned (#8908)

lint for `unnecessary_to_owned` and fix the sole violation in the
codebase
This commit is contained in:
Kirpal Grewal 2024-03-05 22:28:58 +00:00 committed by GitHub
parent b68a277b5e
commit bca98caa07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -384,7 +384,6 @@ reversed_empty_ranges = "allow"
single_range_in_vec_init = "allow"
suspicious_to_owned = "allow"
type_complexity = "allow"
unnecessary_to_owned = "allow"
[workspace.metadata.cargo-machete]
ignored = ["bindgen", "cbindgen", "prost_build", "serde"]

View File

@ -8720,7 +8720,7 @@ impl Editor {
match permalink {
Ok(permalink) => {
cx.open_url(&permalink.to_string());
cx.open_url(permalink.as_ref());
}
Err(err) => {
let message = format!("Failed to open permalink: {err}");