aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r--crates/ra_lsp_server/src/main_loop/handlers.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs
index 839bca342..282f6e8fc 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -657,7 +657,6 @@ pub fn handle_code_action(
657 .filter(|(diag_range, _fix)| diag_range.intersection(&range).is_some()) 657 .filter(|(diag_range, _fix)| diag_range.intersection(&range).is_some())
658 .map(|(_range, fix)| fix); 658 .map(|(_range, fix)| fix);
659 659
660 // TODO: When done, we won't need this, only the one pulling from world.diagnostics
661 for source_edit in fixes_from_diagnostics { 660 for source_edit in fixes_from_diagnostics {
662 let title = source_edit.label.clone(); 661 let title = source_edit.label.clone();
663 let edit = source_edit.try_conv_with(&world)?; 662 let edit = source_edit.try_conv_with(&world)?;