Remove unused method

This commit is contained in:
Kevin Sawicki 2016-12-01 14:51:07 -08:00
parent af555bd879
commit f56b00718b

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