Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wtholliday committed Aug 19, 2023
1 parent 349ec3e commit d6ff9bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ impl Context {
{
self.set_dirty();

let mut holder = self.state_map.get_mut(&id.id).unwrap();
let holder = self.state_map.get_mut(&id.id).unwrap();
holder.dirty = true;
holder.state.downcast_mut::<S>().unwrap()
}
Expand Down

0 comments on commit d6ff9bb

Please sign in to comment.