Unnamed repository; edit this file 'description' to name the repository.
refactor(dap): drop request debug bound
Matouš Dzivjak 4 months ago
parent f37bee9 · commit e19c0ea
-rw-r--r--helix-dap/src/client.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs
index 51d3bb4e..bef0556c 100644
--- a/helix-dap/src/client.rs
+++ b/helix-dap/src/client.rs
@@ -302,7 +302,6 @@ impl Client {
) -> Result<R::Result>
where
R::Arguments: serde::Serialize,
- R::Result: core::fmt::Debug, // TODO: temporary
{
// a future that resolves into the response
let json = self.call::<R>(params).await?;