diff options
Diffstat (limited to 'helix-lsp/src/client.rs')
-rw-r--r-- | helix-lsp/src/client.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index 52cd85c1..1e20e67d 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -121,11 +121,6 @@ impl Client { let response = serde_json::from_value(response)?; - // TODO: we should pass request to a sender thread via a channel - // so it can't be interleaved - - // TODO: responses can be out of order, we need to register a single shot response channel - Ok(response) } |