From e3e5781655e575952f62189ceff96d7058249eba Mon Sep 17 00:00:00 2001 From: evilC Date: Thu, 22 Mar 2018 20:47:16 +0000 Subject: [PATCH] more ConcurrentDictionary changes --- C#/AutoHotInterception/InterceptionWrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C#/AutoHotInterception/InterceptionWrapper.cs b/C#/AutoHotInterception/InterceptionWrapper.cs index 6605da7..85da769 100644 --- a/C#/AutoHotInterception/InterceptionWrapper.cs +++ b/C#/AutoHotInterception/InterceptionWrapper.cs @@ -21,7 +21,7 @@ public class InterceptionWrapper private readonly ConcurrentDictionary _contextCallbacks = new ConcurrentDictionary(); // If a the ID of a device exists as a key in this Dictionary, then that device is filtered. // Used by IsMonitoredKeyboard - private readonly Dictionary _filteredDevices = new Dictionary(); + private readonly ConcurrentDictionary _filteredDevices = new ConcurrentDictionary(); public InterceptionWrapper() {