summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Iry <jamesiry@gmail.com>2013-02-05 07:56:01 -0800
committerJames Iry <jamesiry@gmail.com>2013-02-05 07:56:01 -0800
commit108a1f79d25ce05b84beaca2a80a2dabade3eee2 (patch)
tree462b44325696e2b57a15bc71b00c4b000831fa3a
parente67a039ec2e30d612019c8d3ffd644f7f74b00f6 (diff)
downloadscala-108a1f79d25ce05b84beaca2a80a2dabade3eee2.tar.gz
scala-108a1f79d25ce05b84beaca2a80a2dabade3eee2.tar.bz2
scala-108a1f79d25ce05b84beaca2a80a2dabade3eee2.zip
SI-6773 Changes IndexSeqFactory to be "since 2.11"
The addition of IndexSeqFactory to 2.10.x branch created a binary incompatibility so it was removed in that branch before being released. This commit fixes the since annotation to 2.11 on IndexSeqFactory in the master branch.
-rw-r--r--src/library/scala/collection/generic/IndexedSeqFactory.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/generic/IndexedSeqFactory.scala b/src/library/scala/collection/generic/IndexedSeqFactory.scala
index 451e5e0f46..e86d163b3c 100644
--- a/src/library/scala/collection/generic/IndexedSeqFactory.scala
+++ b/src/library/scala/collection/generic/IndexedSeqFactory.scala
@@ -13,7 +13,7 @@ import language.higherKinds
/** A template for companion objects of IndexedSeq and subclasses thereof.
*
- * @since 2.10
+ * @since 2.11
*/
abstract class IndexedSeqFactory[CC[X] <: IndexedSeq[X] with GenericTraversableTemplate[X, CC]] extends SeqFactory[CC] {
override def ReusableCBF: GenericCanBuildFrom[Nothing] =