Use into_owned over to_string for Cow<str> (#39024)

This removes unnecessary allocations when the `Cow` is already owned


Release Notes:

- N/A *or* Added/Fixed/Improved ...
This commit is contained in:
Lukas Wirth
2025-09-27 14:50:10 +00:00
committed by GitHub
parent a063a70cfb
commit 72948e14ee
84 changed files with 169 additions and 161 deletions
+1 -1
View File
@@ -178,7 +178,7 @@ impl PathKey {
pub fn for_buffer(buffer: &Entity<Buffer>, cx: &App) -> Self {
if let Some(file) = buffer.read(cx).file() {
Self::namespaced(1, file.full_path(cx).to_string_lossy().to_string().into())
Self::namespaced(1, file.full_path(cx).to_string_lossy().into_owned().into())
} else {
Self::namespaced(0, buffer.entity_id().to_string().into())
}