Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/src/System/Collections/Concurrent/ConcurrentUnifierW.cs')
-rw-r--r--src/Common/src/System/Collections/Concurrent/ConcurrentUnifierW.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/src/System/Collections/Concurrent/ConcurrentUnifierW.cs b/src/Common/src/System/Collections/Concurrent/ConcurrentUnifierW.cs
index 8324b6c39..b2b70d8af 100644
--- a/src/Common/src/System/Collections/Concurrent/ConcurrentUnifierW.cs
+++ b/src/Common/src/System/Collections/Concurrent/ConcurrentUnifierW.cs
@@ -112,7 +112,7 @@ namespace System.Collections.Concurrent
// Since this DEBUG code is holding a strong reference to "value", state of a key must never go from found to not found,
// and only one value may exist per key.
Debug.Assert(checkedFound);
- Debug.Assert(Object.ReferenceEquals(checkedValue, value));
+ Debug.Assert(object.ReferenceEquals(checkedValue, value));
GC.KeepAlive(value);
}
}