Webpack build for branch 11.3-dev: feb0991c46

This commit is contained in:
Travis CI 2018-04-20 19:14:25 +00:00
parent 55574b6df5
commit b2f9b68dfa
2 changed files with 3 additions and 2 deletions

View file

@ -13021,7 +13021,8 @@ class RESTManager {
}
destroy() {
for (const handler of Object.values(this.handlers)) {
for (const handlerKey of Object.keys(this.handlers)) {
const handler = this.handlers[handlerKey];
if (handler.destroy) handler.destroy();
}
}

File diff suppressed because one or more lines are too long