diff options
-rw-r--r-- | components/profile_traits/time.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/profile_traits/time.rs b/components/profile_traits/time.rs index ec8a3617cd6..7068a7261e4 100644 --- a/components/profile_traits/time.rs +++ b/components/profile_traits/time.rs @@ -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); } } |