aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorEmil Lauridsen <[email protected]>2020-02-03 11:18:06 +0000
committerEmil Lauridsen <[email protected]>2020-02-03 11:18:06 +0000
commitcde20bf8f0a354dd1471bbb8c6e5d09cc79675d5 (patch)
treec094cd07a7a428e56f254865d649003536cd4dc1 /crates
parent790788d5f4013d8d92f110bc12a581d18cf4b6ae (diff)
Remove stray todo
Diffstat (limited to 'crates')
-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)?;