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:
authorAndrés G. Aragoneses <knocte@gmail.com>2010-03-25 02:02:52 +0300
committerAndrés G. Aragoneses <knocte@gmail.com>2010-03-25 02:02:52 +0300
commitd2ed53e64d7e3d33dca03e4c73976bf2f8729c4a (patch)
tree6a1b30a0a6a73f0c3c97103e442d86a0b412e515 /mcs/class/System.Core/System.Linq/SortSequenceContext.cs
parent200e7a4377ab10bf923a5d63d245b61cb7aebd03 (diff)
2010-03-24 Andrés G. Aragoneses <knocte@gmail.com>
* SortSequenceContext.cs: Fix build, broken in r154156 by a typo in the last backport. svn path=/branches/mono-2-6/mcs/; revision=154181
Diffstat (limited to 'mcs/class/System.Core/System.Linq/SortSequenceContext.cs')
-rw-r--r--mcs/class/System.Core/System.Linq/SortSequenceContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Core/System.Linq/SortSequenceContext.cs b/mcs/class/System.Core/System.Linq/SortSequenceContext.cs
index a29996b9f33..a25427e60cb 100644
--- a/mcs/class/System.Core/System.Linq/SortSequenceContext.cs
+++ b/mcs/class/System.Core/System.Linq/SortSequenceContext.cs
@@ -63,7 +63,7 @@ namespace System.Linq {
if (child_context != null)
return child_context.Compare (first_index, second_index);
- comparison = direction === SortDirection.Descending
+ comparison = direction == SortDirection.Descending
? second_index - first_index
: first_index - second_index;
}