summaryrefslogtreecommitdiff
path: root/newsources
diff options
context:
space:
mode:
Diffstat (limited to 'newsources')
-rwxr-xr-xnewsources/scala/Array.scala12
1 files changed, 3 insertions, 9 deletions
diff --git a/newsources/scala/Array.scala b/newsources/scala/Array.scala
index 7e3b0e225e..6172a6f77d 100755
--- a/newsources/scala/Array.scala
+++ b/newsources/scala/Array.scala
@@ -11,13 +11,7 @@
package scala;
final class Array[T](val length: Int) extends Cloneable with java.io.Serializable with Seq[T] {
-
- def apply(i: Int): T;
- def update(i: Int, x: T): Unit;
-
- def elements = new Iterator[T] {
- var index = 0;
- def hasNext: Boolean = index < length;
- def next: T = { val i = index; index = i + 1; apply(i) }
- }
+ def apply(i: Int): T = throw new Error();
+ def update(i: Int, x: T): Unit = throw new Error();
+ def elements: Iterator[T] = throw new Error();
}