clippy fix
This commit is contained in:
parent
c3184c544c
commit
8b11844282
|
@ -129,7 +129,7 @@ impl Server {
|
||||||
let request = lsp_server::Request {
|
let request = lsp_server::Request {
|
||||||
id: CREATE_COMPILING_PROGRESS_TOKEN.to_string().into(),
|
id: CREATE_COMPILING_PROGRESS_TOKEN.to_string().into(),
|
||||||
method: WorkDoneProgressCreate::METHOD.into(),
|
method: WorkDoneProgressCreate::METHOD.into(),
|
||||||
params: serde_json::to_value(¶ms)?,
|
params: serde_json::to_value(params)?,
|
||||||
};
|
};
|
||||||
|
|
||||||
connection
|
connection
|
||||||
|
@ -707,7 +707,7 @@ impl Server {
|
||||||
|
|
||||||
let notification = lsp_server::Notification {
|
let notification = lsp_server::Notification {
|
||||||
method: Progress::METHOD.into(),
|
method: Progress::METHOD.into(),
|
||||||
params: serde_json::to_value(¶ms)?,
|
params: serde_json::to_value(params)?,
|
||||||
};
|
};
|
||||||
|
|
||||||
connection
|
connection
|
||||||
|
|
Loading…
Reference in New Issue