From fd51bcb983115f3238f094db817cbdaf4eee372c Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 7 Nov 2016 15:33:30 -0500 Subject: [PATCH] Silently ignore errors sending time profiling data. --- components/profile_traits/time.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/profile_traits/time.rs b/components/profile_traits/time.rs index ec8a3617cd68..7068a7261e47 100644 --- a/components/profile_traits/time.rs +++ b/components/profile_traits/time.rs @@ -22,7 +22,7 @@ pub struct ProfilerChan(pub IpcSender); impl ProfilerChan { pub fn send(&self, msg: ProfilerMsg) { - self.0.send(msg).unwrap(); + let _ = self.0.send(msg); } }