diff options
author | Laurențiu Nicola <[email protected]> | 2020-11-26 17:25:59 +0000 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2020-11-26 17:25:59 +0000 |
commit | a5477d7f29463d199da860fb76ff7f62f5b49833 (patch) | |
tree | 4653417fb90681f4d444e9f6774b39db97cc6b23 | |
parent | 3a96c29028c49ae8f288ec37156beac7cb21c039 (diff) |
Remove unused import
-rw-r--r-- | crates/rust-analyzer/src/main_loop.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index 470c2e228..866d1d176 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs | |||
@@ -1,7 +1,7 @@ | |||
1 | //! The main loop of `rust-analyzer` responsible for dispatching LSP | 1 | //! The main loop of `rust-analyzer` responsible for dispatching LSP |
2 | //! requests/replies and notifications back to the client. | 2 | //! requests/replies and notifications back to the client. |
3 | use std::{ | 3 | use std::{ |
4 | env, fmt, panic, | 4 | env, fmt, |
5 | time::{Duration, Instant}, | 5 | time::{Duration, Instant}, |
6 | }; | 6 | }; |
7 | 7 | ||