aboutsummaryrefslogtreecommitdiff
path: root/crates/gen_lsp_server/src/lib.rs
diff options
context:
space:
mode:
authorMuhammad Mominul Huque <[email protected]>2019-06-15 08:37:15 +0100
committerMuhammad Mominul Huque <[email protected]>2019-06-15 08:37:15 +0100
commitebb40c7f87d58fb74c8f3b4dfcb2704140599d65 (patch)
treea5446456867754ef3bd533f3b54c7ea1022f9cc4 /crates/gen_lsp_server/src/lib.rs
parentf032eeb05f0b7d77e30cd6c5eea016cc5d649e3f (diff)
cargo format
Diffstat (limited to 'crates/gen_lsp_server/src/lib.rs')
-rw-r--r--crates/gen_lsp_server/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/gen_lsp_server/src/lib.rs b/crates/gen_lsp_server/src/lib.rs
index 7c4fbbee4..8e7697ed4 100644
--- a/crates/gen_lsp_server/src/lib.rs
+++ b/crates/gen_lsp_server/src/lib.rs
@@ -127,8 +127,7 @@ fn initialize(
127 sender.send(RawMessage::Response(resp)).unwrap(); 127 sender.send(RawMessage::Response(resp)).unwrap();
128 match receiver.recv() { 128 match receiver.recv() {
129 Ok(RawMessage::Notification(n)) => { 129 Ok(RawMessage::Notification(n)) => {
130 n.cast::<Initialized>() 130 n.cast::<Initialized>().map_err(|_| "expected initialized notification")?;
131 .map_err(|_| "expected initialized notification")?;
132 } 131 }
133 _ => Err(format!("expected initialized notification"))?, 132 _ => Err(format!("expected initialized notification"))?,
134 } 133 }