diff options
author | Jeremy A. Kolb <[email protected]> | 2018-11-29 20:30:49 +0000 |
---|---|---|
committer | Jeremy A. Kolb <[email protected]> | 2018-11-29 20:30:49 +0000 |
commit | f32dc7135175c1e8a9ea81d7c18c21b2722f28c5 (patch) | |
tree | 7f63a507106e33d4c4b1282e901fbcecc4c30143 /crates/gen_lsp_server | |
parent | 70a7cb34ec18d30a680a73727e1d87a0a786dc44 (diff) |
Clippy lints
Diffstat (limited to 'crates/gen_lsp_server')
-rw-r--r-- | crates/gen_lsp_server/src/msg.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/gen_lsp_server/src/msg.rs b/crates/gen_lsp_server/src/msg.rs index e0d0aeab5..e1b27c808 100644 --- a/crates/gen_lsp_server/src/msg.rs +++ b/crates/gen_lsp_server/src/msg.rs | |||
@@ -94,7 +94,7 @@ impl RawRequest { | |||
94 | R::Params: Serialize, | 94 | R::Params: Serialize, |
95 | { | 95 | { |
96 | RawRequest { | 96 | RawRequest { |
97 | id: id, | 97 | id, |
98 | method: R::METHOD.to_string(), | 98 | method: R::METHOD.to_string(), |
99 | params: to_value(params).unwrap(), | 99 | params: to_value(params).unwrap(), |
100 | } | 100 | } |