summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-09-15 10:06:23 -0700
committerJan Kotas <jkotas@microsoft.com>2017-09-15 12:52:04 -0700
commit984bcfb3083e1ce944e07e28d259b08ef2e21818 (patch)
tree8221d317616d4864769091776a2600321f43e1e2 /src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
parent18a68a874a6a50f1d89065ef3b3529824b272319 (diff)
downloadcoreclr-984bcfb3083e1ce944e07e28d259b08ef2e21818.tar.gz
coreclr-984bcfb3083e1ce944e07e28d259b08ef2e21818.tar.bz2
coreclr-984bcfb3083e1ce944e07e28d259b08ef2e21818.zip
Fix build breaks after moving files to shared and misc cleanup
- Delete redundant collection and dictionary debug view implementations Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs')
-rw-r--r--src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs b/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
index 4111c5964e..e1593e35aa 100644
--- a/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
+++ b/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
@@ -31,7 +31,7 @@ namespace System.Collections.Concurrent
/// All public and protected members of <see cref="ConcurrentDictionary{TKey,TValue}"/> are thread-safe and may be used
/// concurrently from multiple threads.
/// </remarks>
- [DebuggerTypeProxy(typeof(Mscorlib_DictionaryDebugView<,>))]
+ [DebuggerTypeProxy(typeof(IDictionaryDebugView<,>))]
[DebuggerDisplay("Count = {Count}")]
internal class ConcurrentDictionary<TKey, TValue> : IDictionary<TKey, TValue>, IDictionary, IReadOnlyDictionary<TKey, TValue>
{