From f56b00718b106290b35268a478bcf06ce839fc25 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 1 Dec 2016 14:51:07 -0800 Subject: [PATCH] Remove unused method --- lib/common/api/callbacks-registry.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/common/api/callbacks-registry.js b/lib/common/api/callbacks-registry.js index 3194ca8..aaafbe4 100644 --- a/lib/common/api/callbacks-registry.js +++ b/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) } -- 2.7.4