diff options
author | Blaž Hrastnik | 2021-11-07 12:17:09 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-11-07 12:17:09 +0000 |
commit | 31b431bfdd7bebc437cb563dd0105bcb13ec3235 (patch) | |
tree | cb73b82c2e5e727bb571f708e62733cb4aa88874 /helix-dap/src | |
parent | 9dd17c46a25081adb15fcc8a1609a5b01f761caf (diff) |
dap: Remove Deref for DebuggerCapabilities
Looks like a mistake
Diffstat (limited to 'helix-dap/src')
-rw-r--r-- | helix-dap/src/types.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs index c2becf33..f9c56abd 100644 --- a/helix-dap/src/types.rs +++ b/helix-dap/src/types.rs @@ -84,14 +84,6 @@ pub struct DebuggerCapabilities { pub supported_checksum_algorithms: Option<Vec<String>>, } -impl std::ops::Deref for DebuggerCapabilities { - type Target = Option<bool>; - - fn deref(&self) -> &Self::Target { - &self.supports_exception_options - } -} - #[derive(Debug, PartialEq, Clone, Deserialize, Serialize)] #[serde(rename_all = "camelCase")] pub struct Checksum { |