mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
fix redundant closures in component/script/dom (#31917)
* fixed unnecessary conversions * resolved conflicts * resolved conflicts * fix redundant closures in component/script/dom * resolved conflicts * fixed formatting
This commit is contained in:
parent
f183170786
commit
1bc63801e7
26 changed files with 35 additions and 44 deletions
|
@ -441,7 +441,7 @@ impl XRSession {
|
|||
let callback = self.current_raf_callback_list.borrow()[i]
|
||||
.1
|
||||
.as_ref()
|
||||
.map(|callback| Rc::clone(callback));
|
||||
.map(Rc::clone);
|
||||
if let Some(callback) = callback {
|
||||
let _ = callback.Call__(time, &frame, ExceptionHandling::Report);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue