diff options
author | Aleksey Kladov <[email protected]> | 2020-02-02 17:54:26 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-02-02 17:56:37 +0000 |
commit | 24ad1cce2c3cf2c0ce8288fc02c4c55529598990 (patch) | |
tree | 04241d931e7d2f57799a4ff28a11f020090def74 /crates/ra_lsp_server | |
parent | 856e4ba126ae776753f38c00593c02c4f43be510 (diff) |
Avoid premature pessimization
The extra allocation for message should not matter here at all, but
using a static string is just as ergonomic, if not more, and there's
no reason to write deliberately slow code
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs index d850ded37..508fe08c0 100644 --- a/crates/ra_lsp_server/src/main_loop.rs +++ b/crates/ra_lsp_server/src/main_loop.rs | |||
@@ -403,7 +403,6 @@ fn loop_turn( | |||
403 | let sender = libdata_sender.clone(); | 403 | let sender = libdata_sender.clone(); |
404 | pool.execute(move || { | 404 | pool.execute(move || { |
405 | log::info!("indexing {:?} ... ", root); | 405 | log::info!("indexing {:?} ... ", root); |
406 | let _p = profile(&format!("indexed {:?}", root)); | ||
407 | let data = LibraryData::prepare(root, files); | 406 | let data = LibraryData::prepare(root, files); |
408 | sender.send(data).unwrap(); | 407 | sender.send(data).unwrap(); |
409 | }); | 408 | }); |