From 0600ac1707f66af62ba959ecc05c568cf75b0d3f Mon Sep 17 00:00:00 2001 From: MaxXor Date: Wed, 22 Apr 2015 15:52:58 +0200 Subject: [PATCH] Removed unused variable --- Client/Core/Client.cs | 2 +- Server/Core/Client.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Client/Core/Client.cs b/Client/Core/Client.cs index c78a3b7b..4fd4e2a1 100644 --- a/Client/Core/Client.cs +++ b/Client/Core/Client.cs @@ -143,7 +143,7 @@ private void AsyncReceive(IAsyncResult result) return; } } - catch (Exception ex) + catch (Exception) { OnClientState(false); return; diff --git a/Server/Core/Client.cs b/Server/Core/Client.cs index d930e439..17cb61b1 100644 --- a/Server/Core/Client.cs +++ b/Server/Core/Client.cs @@ -133,7 +133,7 @@ private void AsyncReceive(IAsyncResult result) return; } } - catch (Exception ex) + catch (Exception) { OnClientState(false); return;