Fix testData/js: replace deprecated usages: times, sortBy, reverse, splitBy.

This commit is contained in:
Ilya Gorbunov
2015-10-02 21:11:49 +03:00
parent 1c416ae5f3
commit 352ac58ba5
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ package foo
internal var counter = 0
internal fun test(a: Int) {
a.times {
repeat(a) {
counter += 1
}
}