Skip to content

Commit

Permalink
lib: remove an unused variable
Browse files Browse the repository at this point in the history
PR-URL: #23482
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
chenyil authored and jasnell committed Oct 17, 2018
1 parent d1a23cc commit 313b44b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/internal/bootstrap/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,9 @@
const { kExpandStackSymbol } = NativeModule.require('internal/util');
if (typeof er[kExpandStackSymbol] === 'function')
er[kExpandStackSymbol]();
} catch (er) {}
} catch {
// Nothing to be done about it at this point.
}
return false;
}

Expand Down

0 comments on commit 313b44b

Please sign in to comment.