summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/Vector.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/Vector.scala')
-rwxr-xr-xsrc/library/scalax/collection/Vector.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/library/scalax/collection/Vector.scala b/src/library/scalax/collection/Vector.scala
index 8787d7fd42..4e5df7e59d 100755
--- a/src/library/scalax/collection/Vector.scala
+++ b/src/library/scalax/collection/Vector.scala
@@ -11,11 +11,12 @@
package scalax.collection
import generic._
+import mutable.ArrayBuffer
trait Vector[+A] extends Sequence[A] with covariant.VectorTemplate[Vector, A]
object Vector extends covariant.SequenceFactory[Vector] {
/** The empty sequence */
- val empty : Vector[Nothing] = null // !!!
+ val empty : Vector[Nothing] = null // !!! todo: insert good immutable vector implementation here.
}