Fix needless borrow in iced_wgpu and iced_tiny_skia

This commit is contained in:
Héctor Ramón Jiménez 2023-06-28 00:45:41 +02:00
parent 73dca5e323
commit c8d79a5cd9
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
2 changed files with 2 additions and 2 deletions

View file

@ -391,7 +391,7 @@ impl Cache {
return (
*measured_hash,
self.entries.get_mut(&measured_hash).unwrap(),
self.entries.get_mut(measured_hash).unwrap(),
);
}