We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3990d97 commit b5306eaCopy full SHA for b5306ea
crates/ra_flycheck/src/lib.rs
@@ -37,7 +37,7 @@ pub struct CheckConfig {
37
pub struct Flycheck {
38
// XXX: drop order is significant
39
cmd_send: Sender<CheckCommand>,
40
- handle: Option<jod_thread::JoinHandle<()>>,
+ handle: jod_thread::JoinHandle<()>,
41
pub task_recv: Receiver<CheckTask>,
42
}
43
@@ -49,7 +49,7 @@ impl Flycheck {
49
let mut check = FlycheckThread::new(config, workspace_root);
50
check.run(&task_send, &cmd_recv);
51
});
52
- Flycheck { task_recv, cmd_send, handle: Some(handle) }
+ Flycheck { task_recv, cmd_send, handle }
53
54
55
/// Schedule a re-start of the cargo check worker.
0 commit comments