Remove unused CallbacksRegistry.call method

This commit is contained in:
Kevin Sawicki
2016-12-06 12:59:22 -08:00
parent ac54984763
commit 1bd9fc1a09

View File

@@ -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)
}