Drop mut from variable to silence linter (#7704)
This commit is contained in:
parent
5c41f22c2a
commit
505213d41b
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ impl Handler {
|
||||||
registration_id
|
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;
|
entry.client = client;
|
||||||
|
|
||||||
let mut builder = GlobSetBuilder::new();
|
let mut builder = GlobSetBuilder::new();
|
||||||
|
|
Loading…
Add table
Reference in a new issue