diff options
author | Aleksey Kladov <[email protected]> | 2019-08-31 12:47:37 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-08-31 12:47:37 +0100 |
commit | 4e3f5cc7293d97aef4630ea30b8e9ad6931589a8 (patch) | |
tree | 00e5db62b89604bb005f45368d0caa2642a2d350 /crates/ra_lsp_server/src/main_loop | |
parent | f90a88630195a1b6b542b5883295d66dd6c59cef (diff) |
cleanup main loop
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/subscriptions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/subscriptions.rs b/crates/ra_lsp_server/src/main_loop/subscriptions.rs index 470bc1205..bbeda723c 100644 --- a/crates/ra_lsp_server/src/main_loop/subscriptions.rs +++ b/crates/ra_lsp_server/src/main_loop/subscriptions.rs | |||
@@ -1,7 +1,7 @@ | |||
1 | use ra_ide_api::FileId; | 1 | use ra_ide_api::FileId; |
2 | use rustc_hash::FxHashSet; | 2 | use rustc_hash::FxHashSet; |
3 | 3 | ||
4 | #[derive(Default)] | 4 | #[derive(Default, Debug)] |
5 | pub(crate) struct Subscriptions { | 5 | pub(crate) struct Subscriptions { |
6 | subs: FxHashSet<FileId>, | 6 | subs: FxHashSet<FileId>, |
7 | } | 7 | } |