diff options
author | toidiu <toidiu@protonmail.com> | 2017-09-03 16:30:48 -0400 |
---|---|---|
committer | toidiu <toidiu@protonmail.com> | 2017-09-03 16:30:48 -0400 |
commit | 99e4504f85afe0e9fa678796735c971295c8c709 (patch) | |
tree | 32636f7e53de477ac5a3008395f72560648dc923 /components/script/dom/performance.rs | |
parent | a3df0cf4debadab400cc05e77a082514a4ae6c25 (diff) | |
download | servo-99e4504f85afe0e9fa678796735c971295c8c709.tar.gz servo-99e4504f85afe0e9fa678796735c971295c8c709.zip |
move name implementation as default implementation to the trait and remove overrides.
Diffstat (limited to 'components/script/dom/performance.rs')
-rw-r--r-- | components/script/dom/performance.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/performance.rs b/components/script/dom/performance.rs index fa9edfb397c..540405da372 100644 --- a/components/script/dom/performance.rs +++ b/components/script/dom/performance.rs @@ -213,8 +213,6 @@ impl NotifyPerformanceObserverRunnable { } impl Runnable for NotifyPerformanceObserverRunnable { - fn name(&self) -> &'static str { "NotifyPerformanceObserverRunnable" } - fn main_thread_handler(self: Box<NotifyPerformanceObserverRunnable>, _: &ScriptThread) { self.owner.root().notify_observers(); |