mirror of
https://github.com/servo/servo.git
synced 2025-07-23 15:23:42 +01:00
Silently ignore errors sending time profiling data.
This commit is contained in:
parent
04e2af0b22
commit
fd51bcb983
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ pub struct ProfilerChan(pub IpcSender<ProfilerMsg>);
|
||||||
|
|
||||||
impl ProfilerChan {
|
impl ProfilerChan {
|
||||||
pub fn send(&self, msg: ProfilerMsg) {
|
pub fn send(&self, msg: ProfilerMsg) {
|
||||||
self.0.send(msg).unwrap();
|
let _ = self.0.send(msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue