mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Drop mut from variable to silence linter (#7704)
This commit is contained in:
parent
5c41f22c2a
commit
505213d41b
@ -139,7 +139,7 @@ async fn run(mut rx: mpsc::UnboundedReceiver<Event>) {
|
||||
registration_id
|
||||
);
|
||||
|
||||
let mut entry = state.entry(client_id).or_insert_with(ClientState::default);
|
||||
let entry = state.entry(client_id).or_insert_with(ClientState::default);
|
||||
entry.client = client;
|
||||
|
||||
let mut builder = GlobSetBuilder::new();
|
||||
|
Loading…
Reference in New Issue
Block a user