Fix clippy::for_kv_map lint violations (#36493)

Release Notes:

- N/A
This commit is contained in:
tidely
2025-08-20 11:22:19 +02:00
committed by GitHub
parent d4d049d7b9
commit 44941b5dfe
11 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -1643,7 +1643,7 @@ impl AgentDiff {
continue;
};
for (weak_editor, _) in buffer_editors {
for weak_editor in buffer_editors.keys() {
let Some(editor) = weak_editor.upgrade() else {
continue;
};