refactor: remove unused vars (#59658)

This commit is contained in:
Oliver Eyton-Williams
2025-04-10 17:06:46 +02:00
committed by GitHub
parent 9d2701b1ab
commit 5ef98680f9
18 changed files with 31 additions and 58 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ function handleError(err, client) {
console.error(err);
try {
client.close();
} catch (e) {
} catch {
// no-op
} finally {
process.exit(1);
+1 -1
View File
@@ -36,7 +36,7 @@ function handleError(err, client) {
console.error(err);
try {
client.close();
} catch (e) {
} catch {
// no-op
} finally {
process.exit(1);
+1 -1
View File
@@ -24,7 +24,7 @@ function handleError(err, client) {
console.error(err);
try {
client.close();
} catch (e) {
} catch {
// no-op
} finally {
process.exit(1);
+1 -1
View File
@@ -26,7 +26,7 @@ function handleError(err, client) {
console.error(err);
try {
client.close();
} catch (e) {
} catch {
// no-op
} finally {
process.exit(1);