summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/mutable/Vector.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/mutable/Vector.scala')
-rw-r--r--src/library/scalax/collection/mutable/Vector.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/library/scalax/collection/mutable/Vector.scala b/src/library/scalax/collection/mutable/Vector.scala
deleted file mode 100644
index 1813172fbf..0000000000
--- a/src/library/scalax/collection/mutable/Vector.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2006-2009, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id: Vector.scala 15437 2008-06-25 16:22:45Z stepancheg $
-
-package scalax.collection.mutable
-
-import generic._
-
-trait Vector[A] extends Sequence[A] with collection.Vector[A] with MutableVectorTemplate[Vector, A]
-
-/* Factory object for `Vector` class */
-object Vector extends SequenceFactory[Vector] {
- /** The empty vector */
- def apply[A](args: A*): Vector[A] = ArrayBuffer.apply(args: _*) // !!! swicth to Array?
-}