diff options
Diffstat (limited to 'helix-dap')
-rw-r--r-- | helix-dap/src/client.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs index 90ddeb2f..ba13b96a 100644 --- a/helix-dap/src/client.rs +++ b/helix-dap/src/client.rs @@ -35,7 +35,6 @@ pub struct Client { pub thread_id: Option<usize>, /// Currently active frame for the current thread. pub active_frame: Option<usize>, - pub is_running: bool, // TODO: track is_running per thread } impl Client { @@ -83,7 +82,6 @@ impl Client { thread_states: HashMap::new(), thread_id: None, active_frame: None, - is_running: false, }; tokio::spawn(Self::recv(server_rx, client_rx)); |