diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-11-26 17:28:43 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-26 17:28:43 +0000 |
commit | deb3550fea718e52cd03e7d14fd964d14795a31d (patch) | |
tree | 4653417fb90681f4d444e9f6774b39db97cc6b23 /crates | |
parent | 3a96c29028c49ae8f288ec37156beac7cb21c039 (diff) | |
parent | a5477d7f29463d199da860fb76ff7f62f5b49833 (diff) |
Merge #6643
6643: Remove unused import r=lnicola a=lnicola
Not sure why CI didn't catch this...
bors r+
Co-authored-by: Laurențiu Nicola <[email protected]>
Diffstat (limited to 'crates')
-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 | ||