summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/collection/generic/Sorted.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/library/scala/collection/generic/Sorted.scala b/src/library/scala/collection/generic/Sorted.scala
index 7a3a220683..ed9e11fd30 100644
--- a/src/library/scala/collection/generic/Sorted.scala
+++ b/src/library/scala/collection/generic/Sorted.scala
@@ -71,11 +71,10 @@ trait Sorted[K, +This <: Sorted[K, This]] {
* @param to The upper-bound (inclusive) of the ranged projection.
*/
def to(to: K): This = {
- // tough!
val i = keySet.from(to).iterator
if (i.isEmpty) return repr
val next = i.next
- if (next == to)
+ if (compare(next, to) == 0)
if (i.isEmpty) repr
else until(i.next)
else