Stdlib: remove a workaround which related to KT-2028
This commit is contained in:
@@ -58,9 +58,8 @@ private class ImmutableArrayList<T>(
|
|||||||
// TODO: efficiently implement iterator and other stuff
|
// TODO: efficiently implement iterator and other stuff
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make private val, see http://youtrack.jetbrains.com/issue/KT-2028
|
private val emptyArray = arrayOfNulls<Any?>(0)
|
||||||
internal val emptyArray = arrayOfNulls<Any?>(0)
|
private val emptyImmutableArrayList = ImmutableArrayList<Any?>(emptyArray, 0, 0)
|
||||||
internal val emptyImmutableArrayList = ImmutableArrayList<Any?>(emptyArray, 0, 0)
|
|
||||||
|
|
||||||
public class ImmutableArrayListBuilder<T>() {
|
public class ImmutableArrayListBuilder<T>() {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user