From 4ba5b5b44c69ab7c85f17c6cddaa32a19e179971 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Fri, 14 Apr 2023 20:35:56 +0700 Subject: Fix warning --- crypto/src/tls/DtlsServerProtocol.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit 1.4.1