Skip to content

Commit

Permalink
fix(clippy): remove borrowing of reference (#460)
Browse files Browse the repository at this point in the history
This is immediately auto-derefed by the compiler already.  Thanks
clippy.
  • Loading branch information
Floris Bruynooghe authored Jun 10, 2021
1 parent 5c0a155 commit c233b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/symbolicator/src/services/symbolication.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,7 @@ impl SymbolicationActor {
.cficaches
.fetch(FetchCfiCache {
object_type: object_info.ty,
identifier: object_id_from_object_info(&object_info),
identifier: object_id_from_object_info(object_info),
sources,
scope,
})
Expand Down

0 comments on commit c233b52

Please sign in to comment.