diff options
author | Ville Penttinen <[email protected]> | 2019-02-27 10:57:59 +0000 |
---|---|---|
committer | Ville Penttinen <[email protected]> | 2019-02-27 10:57:59 +0000 |
commit | 6eb45c1c2be0fb780c4160aaa93c8d3d81e607e2 (patch) | |
tree | b6d466dc0987e64e692a2b4de1111c49e18cf40c /crates/ra_lsp_server | |
parent | 33cebe172459d1ae46556c7808411f1f539aa7cf (diff) |
Remove RawResponse::empty()
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs index 1baeff266..ce50fb301 100644 --- a/crates/ra_lsp_server/src/main_loop.rs +++ b/crates/ra_lsp_server/src/main_loop.rs | |||
@@ -425,8 +425,11 @@ impl<'a> PoolDispatcher<'a> { | |||
425 | // ErrorCode::ContentModified as i32, | 425 | // ErrorCode::ContentModified as i32, |
426 | // "content modified".to_string(), | 426 | // "content modified".to_string(), |
427 | // ) | 427 | // ) |
428 | RawResponse::empty(id) | 428 | RawResponse { |
429 | 429 | id, | |
430 | result: Some(serde_json::to_value(&()).unwrap()), | ||
431 | error: None, | ||
432 | } | ||
430 | } else { | 433 | } else { |
431 | RawResponse::err( | 434 | RawResponse::err( |
432 | id, | 435 | id, |