mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
clippy: Fix clone-on-copy warnings (#31877)
This commit is contained in:
parent
5f7baf31c2
commit
b55d0a2053
9 changed files with 41 additions and 47 deletions
|
@ -397,7 +397,7 @@ impl Animations {
|
|||
pipeline_id,
|
||||
event_type,
|
||||
node: key.node,
|
||||
pseudo_element: key.pseudo_element.clone(),
|
||||
pseudo_element: key.pseudo_element,
|
||||
property_or_animation_name: transition
|
||||
.property_animation
|
||||
.property_id()
|
||||
|
@ -450,7 +450,7 @@ impl Animations {
|
|||
pipeline_id,
|
||||
event_type,
|
||||
node: key.node,
|
||||
pseudo_element: key.pseudo_element.clone(),
|
||||
pseudo_element: key.pseudo_element,
|
||||
property_or_animation_name: animation.name.to_string(),
|
||||
elapsed_time,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue