aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/main_loop.rs
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2020-11-26 17:25:59 +0000
committerLaurenČ›iu Nicola <[email protected]>2020-11-26 17:25:59 +0000
commita5477d7f29463d199da860fb76ff7f62f5b49833 (patch)
tree4653417fb90681f4d444e9f6774b39db97cc6b23 /crates/rust-analyzer/src/main_loop.rs
parent3a96c29028c49ae8f288ec37156beac7cb21c039 (diff)
Remove unused import
Diffstat (limited to 'crates/rust-analyzer/src/main_loop.rs')
-rw-r--r--crates/rust-analyzer/src/main_loop.rs2
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.
3use std::{ 3use std::{
4 env, fmt, panic, 4 env, fmt,
5 time::{Duration, Instant}, 5 time::{Duration, Instant},
6}; 6};
7 7