Make common ArrayList declaration not open and implementing RandomAccess

This commit is contained in:
Ilya Gorbunov
2017-12-25 21:26:37 +03:00
parent fb13347864
commit c5c6eed170
2 changed files with 2 additions and 2 deletions
@@ -16,7 +16,7 @@
package kotlin.collections
expect open class ArrayList<E> : MutableList<E> {
expect class ArrayList<E> : MutableList<E>, RandomAccess {
constructor()
constructor(initialCapacity: Int)
constructor(elements: Collection<E>)