aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/thread_watcher.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-10-15 18:15:53 +0100
committerAleksey Kladov <[email protected]>2018-10-15 18:15:53 +0100
commitbb298158ebc7fc62cad1654c76dc582e6dc28f05 (patch)
tree81bbbabcc118687d72fa3a32ae59ab3bd02c8a9e /crates/ra_lsp_server/src/thread_watcher.rs
parent2dd6858d03dd9c3f6dced3cc5c33ef3ab9d09157 (diff)
migrate analysis and server to 2018
Diffstat (limited to 'crates/ra_lsp_server/src/thread_watcher.rs')
-rw-r--r--crates/ra_lsp_server/src/thread_watcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/thread_watcher.rs b/crates/ra_lsp_server/src/thread_watcher.rs
index 86a3a91e0..3257effcb 100644
--- a/crates/ra_lsp_server/src/thread_watcher.rs
+++ b/crates/ra_lsp_server/src/thread_watcher.rs
@@ -1,7 +1,7 @@
1use std::thread; 1use std::thread;
2use crossbeam_channel::{bounded, unbounded, Sender, Receiver}; 2use crossbeam_channel::{bounded, unbounded, Sender, Receiver};
3use drop_bomb::DropBomb; 3use drop_bomb::DropBomb;
4use Result; 4use crate::Result;
5 5
6pub struct Worker<I, O> { 6pub struct Worker<I, O> {
7 pub inp: Sender<I>, 7 pub inp: Sender<I>,