From 9c4ddcaa756dbe6bf2da853e3b47e1549f7b3825 Mon Sep 17 00:00:00 2001 From: Alex Yumashev <33555768+alex-jitbit@users.noreply.github.com> Date: Tue, 5 Nov 2024 13:28:36 +0200 Subject: [PATCH] Removed tmp debug code --- FastCache/FastCache.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/FastCache/FastCache.cs b/FastCache/FastCache.cs index 18d5916..f831e42 100644 --- a/FastCache/FastCache.cs +++ b/FastCache/FastCache.cs @@ -284,9 +284,7 @@ private void OnEviction(TKey key) { _itemEvicted(key); } - catch { - var i = 0; - } //to prevent any exceptions from crashing the thread + catch { } //to prevent any exceptions from crashing the thread }); }