From 647b67fbfc9f2117f1eef21c5f79c57b7a453985 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Wed, 11 Apr 2018 13:09:03 -0400 Subject: [PATCH] refactor: Removing debug lines --- ICD.Common.Utils/Collections/WeakKeyDictionary.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ICD.Common.Utils/Collections/WeakKeyDictionary.cs b/ICD.Common.Utils/Collections/WeakKeyDictionary.cs index fbc541a..eac0a83 100644 --- a/ICD.Common.Utils/Collections/WeakKeyDictionary.cs +++ b/ICD.Common.Utils/Collections/WeakKeyDictionary.cs @@ -231,11 +231,6 @@ namespace ICD.Common.Utils.Collections .Where(weakKey => !weakKey.IsAlive) .ToArray(); - IcdConsole.PrintLine("-------------------"); - foreach (var item in toRemove) - IcdConsole.PrintLine("{0} - {1}", item, item.Target); - IcdConsole.PrintLine("-------------------"); - m_Dictionary.RemoveAll(toRemove); }