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/ConcurrentUnifier.cs')
-rw-r--r--src/Common/src/System/Collections/Concurrent/ConcurrentUnifier.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/src/System/Collections/Concurrent/ConcurrentUnifier.cs b/src/Common/src/System/Collections/Concurrent/ConcurrentUnifier.cs
index cc7edb0a4..bbb5959ca 100644
--- a/src/Common/src/System/Collections/Concurrent/ConcurrentUnifier.cs
+++ b/src/Common/src/System/Collections/Concurrent/ConcurrentUnifier.cs
@@ -102,7 +102,7 @@ namespace System.Collections.Concurrent
// State of a key must never go from found to not found, and only one value may exist per key.
Debug.Assert(checkedFound);
if (default(V) == null) // No good way to do the "only one value" check for value types.
- Debug.Assert(Object.ReferenceEquals(checkedValue, value));
+ Debug.Assert(object.ReferenceEquals(checkedValue, value));
}
}
#endif //DEBUG