diff options
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop.rs')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs index 1a87706fe..379dab438 100644 --- a/crates/ra_lsp_server/src/main_loop.rs +++ b/crates/ra_lsp_server/src/main_loop.rs | |||
@@ -196,7 +196,7 @@ pub fn main_loop( | |||
196 | task_receiver.into_iter().for_each(|task| { | 196 | task_receiver.into_iter().for_each(|task| { |
197 | on_task(task, &connection.sender, &mut loop_state.pending_requests, &mut world_state) | 197 | on_task(task, &connection.sender, &mut loop_state.pending_requests, &mut world_state) |
198 | }); | 198 | }); |
199 | libdata_receiver.into_iter().for_each(|lib| drop(lib)); | 199 | libdata_receiver.into_iter().for_each(drop); |
200 | log::info!("...tasks have finished"); | 200 | log::info!("...tasks have finished"); |
201 | log::info!("joining threadpool..."); | 201 | log::info!("joining threadpool..."); |
202 | drop(pool); | 202 | drop(pool); |