Clean up variable declarations

This commit is contained in:
Jessica Lord 2016-01-14 18:07:29 -08:00
parent 5a4a8e1fa7
commit 003de0debe
4 changed files with 9 additions and 9 deletions

View file

@ -163,8 +163,8 @@ module.exports = {
// Mark standard asynchronous functions.
var ref1 = ['showMessageBox', 'showOpenDialog', 'showSaveDialog'];
var j, len
var j, len, api;
for (j = 0, len = ref1.length; j < len; j++) {
var api = ref1[j];
api = ref1[j];
v8Util.setHiddenValue(module.exports[api], 'asynchronous', true);
}