mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
code review re. #1443
This commit is contained in:
parent
eec3dfefd4
commit
0547c0dd18
1 changed files with 3 additions and 5 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue