Browse Source

Remove unused CallbacksRegistry.call method

Kevin Sawicki 8 years ago
parent
commit
1bd9fc1a09
1 changed files with 0 additions and 4 deletions
  1. 0 4
      lib/common/api/callbacks-registry.js

+ 0 - 4
lib/common/api/callbacks-registry.js

@@ -44,10 +44,6 @@ class CallbacksRegistry {
     return (ref = this.callbacks[id]) != null ? ref : function () {}
   }
 
-  call (id, ...args) {
-    return this.get(id).call(global, ...args)
-  }
-
   apply (id, ...args) {
     return this.get(id).apply(global, ...args)
   }