summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/jcl/SortedSetWrapper.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/jcl/SortedSetWrapper.scala')
-rw-r--r--src/library/scala/collection/jcl/SortedSetWrapper.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/jcl/SortedSetWrapper.scala b/src/library/scala/collection/jcl/SortedSetWrapper.scala
index 0021d09031..39b066bfd7 100644
--- a/src/library/scala/collection/jcl/SortedSetWrapper.scala
+++ b/src/library/scala/collection/jcl/SortedSetWrapper.scala
@@ -20,7 +20,7 @@ package scala.collection.jcl;
* @author Sean McDirmid
*/
trait SortedSetWrapper[A] extends SortedSet[A] with SetWrapper[A] {
- def underlying : java.util.SortedSet;
+ def underlying : java.util.SortedSet[A];
/** delegates to the comparator of the underlying Java sorted set */
override def compare(a0 : A, a1 : A) = underlying.comparator.compare(a0, a1);
override def firstKey = underlying.first.asInstanceOf[A];