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 jasnell committed Oct 17, 2018
1 parent 30c48fd commit b35d234
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 b35d234

Please sign in to comment.