diff options
Diffstat (limited to 'crates/ra_flycheck')
-rw-r--r-- | crates/ra_flycheck/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_flycheck/src/lib.rs b/crates/ra_flycheck/src/lib.rs index 2990c1f95..75aece45f 100644 --- a/crates/ra_flycheck/src/lib.rs +++ b/crates/ra_flycheck/src/lib.rs | |||
@@ -37,7 +37,7 @@ pub struct CheckConfig { | |||
37 | pub struct Flycheck { | 37 | pub struct Flycheck { |
38 | // XXX: drop order is significant | 38 | // XXX: drop order is significant |
39 | cmd_send: Sender<CheckCommand>, | 39 | cmd_send: Sender<CheckCommand>, |
40 | handle: Option<jod_thread::JoinHandle<()>>, | 40 | handle: jod_thread::JoinHandle<()>, |
41 | pub task_recv: Receiver<CheckTask>, | 41 | pub task_recv: Receiver<CheckTask>, |
42 | } | 42 | } |
43 | 43 | ||
@@ -49,7 +49,7 @@ impl Flycheck { | |||
49 | let mut check = FlycheckThread::new(config, workspace_root); | 49 | let mut check = FlycheckThread::new(config, workspace_root); |
50 | check.run(&task_send, &cmd_recv); | 50 | check.run(&task_send, &cmd_recv); |
51 | }); | 51 | }); |
52 | Flycheck { task_recv, cmd_send, handle: Some(handle) } | 52 | Flycheck { task_recv, cmd_send, handle } |
53 | } | 53 | } |
54 | 54 | ||
55 | /// Schedule a re-start of the cargo check worker. | 55 | /// Schedule a re-start of the cargo check worker. |