Skip to content

Commit

Permalink
test: remove unused e variable in catch statement
Browse files Browse the repository at this point in the history
PR-URL: #23465
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
  • Loading branch information
DennyScott authored and MylesBorins committed Oct 30, 2018
1 parent ed9f8ac commit 77ef497
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if (process.argv[2] === 'child') {
if (process.argv.includes('useTryCatch')) {
try {
throw new Error(domainErrHandlerExMessage);
} catch (e) {
} catch {
}
} else {
throw new Error(domainErrHandlerExMessage);
Expand Down

0 comments on commit 77ef497

Please sign in to comment.