diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-04-14 20:35:56 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-04-14 20:35:56 +0700 |
commit | 4ba5b5b44c69ab7c85f17c6cddaa32a19e179971 (patch) | |
tree | e2a99225891fef29084284c3e4c489af6b1c3f7b /crypto/src/tls/DtlsServerProtocol.cs | |
parent | Add and use DtlsRecordCallback (diff) | |
download | BouncyCastle.NET-ed25519-4ba5b5b44c69ab7c85f17c6cddaa32a19e179971.tar.xz |
Fix warning
Diffstat (limited to '')
-rw-r--r-- | crypto/src/tls/DtlsServerProtocol.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/tls/DtlsServerProtocol.cs b/crypto/src/tls/DtlsServerProtocol.cs index cf16bc302..f2eaf31f8 100644 --- a/crypto/src/tls/DtlsServerProtocol.cs +++ b/crypto/src/tls/DtlsServerProtocol.cs @@ -59,7 +59,7 @@ namespace Org.BouncyCastle.Tls AbortServerHandshake(state, recordLayer, fatalAlert.AlertDescription); throw; } - catch (IOException e) + catch (IOException) { AbortServerHandshake(state, recordLayer, AlertDescription.internal_error); throw; |