Skip to content

Commit 00698cc

Browse files
chenyilMylesBorins
authored andcommitted
lib: remove an unused variable
PR-URL: #23482 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent b083715 commit 00698cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/internal/bootstrap/node.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,9 @@
504504
const { kExpandStackSymbol } = NativeModule.require('internal/util');
505505
if (typeof er[kExpandStackSymbol] === 'function')
506506
er[kExpandStackSymbol]();
507-
} catch (er) {}
507+
} catch {
508+
// Nothing to be done about it at this point.
509+
}
508510
return false;
509511
}
510512

0 commit comments

Comments
 (0)