Skip to content

Commit

Permalink
Silently ignore errors sending time profiling data.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed Nov 7, 2016
1 parent 04e2af0 commit fd51bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/profile_traits/time.rs
Expand Up @@ -22,7 +22,7 @@ pub struct ProfilerChan(pub IpcSender<ProfilerMsg>);

impl ProfilerChan {
pub fn send(&self, msg: ProfilerMsg) {
self.0.send(msg).unwrap();
let _ = self.0.send(msg);
}
}

Expand Down

0 comments on commit fd51bcb

Please sign in to comment.