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/mscorlib/system/threading/Tasks/Parallel.cs')
-rw-r--r--mcs/class/referencesource/mscorlib/system/threading/Tasks/Parallel.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/referencesource/mscorlib/system/threading/Tasks/Parallel.cs b/mcs/class/referencesource/mscorlib/system/threading/Tasks/Parallel.cs
index d2358ec0951..55aa1597430 100644
--- a/mcs/class/referencesource/mscorlib/system/threading/Tasks/Parallel.cs
+++ b/mcs/class/referencesource/mscorlib/system/threading/Tasks/Parallel.cs
@@ -7,7 +7,7 @@
//
// Parallel.cs
//
-// <OWNER>Microsoft</OWNER>
+// <OWNER>[....]</OWNER>
//
// A helper class that contains parallel versions of various looping constructs. This
// internally uses the task parallel library, but takes care to expose very little
@@ -1103,7 +1103,7 @@ namespace System.Threading.Tasks
fromInclusive, toExclusive);
}
- ParallelForReplicatingTask rootTask = null; // eliminates "Use of unassigned local variable" compiler
+ ParallelForReplicatingTask rootTask = null; // eliminates "Use of unassigned local variable" compiler bug below.
try
{
@@ -1418,7 +1418,7 @@ namespace System.Threading.Tasks
fromInclusive, toExclusive);
}
- ParallelForReplicatingTask rootTask = null; // eliminates "Use of unassigned local variable" compiler
+ ParallelForReplicatingTask rootTask = null; // eliminates "Use of unassigned local variable" compiler bug below.
try
{