aboutsummaryrefslogtreecommitdiff
path: root/helix-dap/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-dap/src')
-rw-r--r--helix-dap/src/client.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs
index 5e6d8d53..427db18c 100644
--- a/helix-dap/src/client.rs
+++ b/helix-dap/src/client.rs
@@ -35,7 +35,6 @@ pub struct Client {
pub thread_id: Option<ThreadId>,
/// Currently active frame for the current thread.
pub active_frame: Option<usize>,
- pub breakpoints: Vec<Breakpoint>,
pub quirks: DebuggerQuirks,
}
@@ -81,7 +80,6 @@ impl Client {
thread_states: HashMap::new(),
thread_id: None,
active_frame: None,
- breakpoints: vec![],
quirks: DebuggerQuirks::default(),
};