Skip to content

Commit 4189e21

Browse files
committed
fix linting
1 parent 2401d46 commit 4189e21

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

client/basic/connection.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,14 @@ export class SMTPConnection {
5656
close() {
5757
try {
5858
this.conn.close();
59-
} catch (_ex) {}
59+
} catch (_ex) {
60+
// That is no error
61+
}
6062
try {
6163
this.#decoder.close();
62-
} catch (_ex) {}
64+
} catch (_ex) {
65+
// That is no error
66+
}
6367
}
6468

6569
public assertCode(cmd: Command | null, code: number, msg?: string) {

0 commit comments

Comments
 (0)