summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/Set.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/Set.scala')
-rw-r--r--src/library/scalax/collection/Set.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/library/scalax/collection/Set.scala b/src/library/scalax/collection/Set.scala
index 24829364b3..a7234d0261 100644
--- a/src/library/scalax/collection/Set.scala
+++ b/src/library/scalax/collection/Set.scala
@@ -12,12 +12,13 @@ package scalax.collection
import generic._
-trait Set[A] extends OrderedIterable[A] with SetTemplate[Set, A]
+trait Set[A] extends SetTemplate[Set, A]
-/* Factory object for `Sequence` class */
+/* Factory object for `Set` class */
object Set extends IterableFactory[Set] {
/** The empty set */
def apply[A](args: A*): Set[A] = null // !!!
+
}