summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-12-12 15:43:49 -0800
committerGitHub <noreply@github.com>2016-12-12 15:43:49 -0800
commitb638af3a4dd52fa7b1ea1958164136c72096c25c (patch)
tree18b559fb0275a2290eb6b441a4adf3f9369cbc5f /src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
parentec17ff6bcd252867e3cd40b630e559f6cfb38b36 (diff)
downloadcoreclr-b638af3a4dd52fa7b1ea1958164136c72096c25c.tar.gz
coreclr-b638af3a4dd52fa7b1ea1958164136c72096c25c.tar.bz2
coreclr-b638af3a4dd52fa7b1ea1958164136c72096c25c.zip
Rename Contract.Assert to Debug.Assert (#8600)
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 0eb2546612..6f465896a8 100644
--- a/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
+++ b/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
@@ -1905,7 +1905,7 @@ namespace System.Collections.Concurrent
[Conditional("DEBUG")]
private void Assert(bool condition)
{
- Contract.Assert(condition);
+ Debug.Assert(condition);
}
/// <summary>