Removed toArray() from collections (few tests are still failing).

#KT-3352 in progress
This commit is contained in:
Evgeny Gerashchenko
2013-09-25 03:01:47 +04:00
parent 48625dd7b6
commit d56c59d9d7
162 changed files with 21 additions and 75 deletions
-3
View File
@@ -10,9 +10,6 @@ public trait Comparator<T> {
library
public abstract class AbstractCollection<E>() : MutableCollection<E> {
override fun toArray(): Array<Any?> = js.noImpl
override fun <T> toArray(a: Array<out T>): Array<T> = js.noImpl
override fun isEmpty(): Boolean = js.noImpl
override fun contains(o: Any?): Boolean = js.noImpl
override fun iterator(): MutableIterator<E> = js.noImpl