summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/generic/covartest/SequenceFactory.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/generic/covartest/SequenceFactory.scala')
-rwxr-xr-xsrc/library/scalax/collection/generic/covartest/SequenceFactory.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/library/scalax/collection/generic/covartest/SequenceFactory.scala b/src/library/scalax/collection/generic/covartest/SequenceFactory.scala
deleted file mode 100755
index eb6c093bff..0000000000
--- a/src/library/scalax/collection/generic/covartest/SequenceFactory.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-package scalax.collection.generic.covartest
-
-trait SequenceFactory[CC[A] <: Sequence[A]] extends IterableFactory[CC] {
-
- /** This method is called in a pattern match { case Sequence(...) => }.
- *
- * @param x the selector value
- * @return sequence wrapped in an option, if this is a Sequence, otherwise none
- */
- def unapplySeq[A](x: CC[A]): Some[CC[A]] = Some(x)
-}