Skip to content

Commit

Permalink
Fix unnecessary mut (GothenburgBitFactory#3224)
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche authored Dec 25, 2023
1 parent 1380d79 commit bd46b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskchampion/sync-server/src/storage/inmemory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl<'a> StorageTxn for InnerTxn<'a> {
snapshot: Snapshot,
data: Vec<u8>,
) -> anyhow::Result<()> {
let mut client = self
let client = self
.0
.clients
.get_mut(&client_id)
Expand Down

0 comments on commit bd46b25

Please sign in to comment.