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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/System/sys/system/collections/concurrent/BlockingCollection.cs')
-rw-r--r--mcs/class/referencesource/System/sys/system/collections/concurrent/BlockingCollection.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/referencesource/System/sys/system/collections/concurrent/BlockingCollection.cs b/mcs/class/referencesource/System/sys/system/collections/concurrent/BlockingCollection.cs
index 53f2bf210e2..ba8dac36669 100644
--- a/mcs/class/referencesource/System/sys/system/collections/concurrent/BlockingCollection.cs
+++ b/mcs/class/referencesource/System/sys/system/collections/concurrent/BlockingCollection.cs
@@ -7,7 +7,7 @@
//
// BlockingCollection.cs
//
-// <OWNER>Microsoft</OWNER>
+// <OWNER>[....]</OWNER>
//
// A class that implements the bounding and blocking functionality while abstracting away
// the underlying storage mechanism. This file also contains BlockingCollection's
@@ -499,7 +499,7 @@ namespace System.Collections.Concurrent
try
{
//The token may have been canceled before the collection had space available, so we need a check after the wait has completed.
- //This fixes
+ //This fixes bug #702328, case 2 of 2.
cancellationToken.ThrowIfCancellationRequested();
addingSucceeded = m_collection.TryAdd(item);
}
@@ -736,7 +736,7 @@ namespace System.Collections.Concurrent
try
{
//The token may have been canceled before an item arrived, so we need a check after the wait has completed.
- //This fixes
+ //This fixes bug #702328, case 1 of 2.
cancellationToken.ThrowIfCancellationRequested();
//If an item was successfully removed from the underlying collection.