1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

code review re. #1443

This commit is contained in:
gorhill 2016-03-09 17:13:22 -05:00
parent eec3dfefd4
commit 0547c0dd18

View File

@ -237,11 +237,9 @@ vAPI.messaging = {
this.pending = Object.create(null);
this.pendingCount = 0;
for ( var auxId in pending ) {
if ( this.pending.hasOwnProperty(auxId) ) {
callback = pending[auxId];
if ( typeof callback === 'function' ) {
callback(null);
}
callback = pending[auxId];
if ( typeof callback === 'function' ) {
callback(null);
}
}
},