Fix testData/debugger stepping: replace deprecated withIndices and sortBy usages.

This commit is contained in:
Ilya Gorbunov
2015-10-02 20:09:28 +03:00
parent 43a74e575e
commit 782f41580e
2 changed files with 2 additions and 2 deletions
@@ -3,6 +3,6 @@ package stdlibStep
fun main(args: Array<String>) {
val a = intArrayOf(1)
//Breakpoint!
a.withIndices()
a.withIndex()
val b = 1
}
@@ -3,7 +3,7 @@ package stepIntoStdlib
fun main(args: Array<String>) {
val a = intArrayOf(1)
//Breakpoint!
a.withIndices()
a.withIndex()
val b = 1
}