Fix overlooked Clippy lints (#36659)

Follow-up of https://github.com/zed-industries/zed/pull/36557 that is
needed after https://github.com/zed-industries/zed/pull/36652

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov 2025-08-21 09:48:04 +03:00 committed by GitHub
parent cde0a5dd27
commit ed84767c9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -248,7 +248,7 @@ impl AnyProtoClient {
let query = proto::LspQuery {
project_id,
lsp_request_id: new_id.0,
request: Some(request.clone().to_proto_query()),
request: Some(request.to_proto_query()),
};
let request = self.request(query);
let request_ids = self.0.request_ids.clone();