Fix usage of deprecated function in debugger testData

This commit is contained in:
Natalia Ukhorskaya
2015-09-24 14:22:54 +03:00
parent dc7ced1581
commit 5848ea8d77
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ Compile bytecode for javaClass<String>()
Compile bytecode for javaClass<Int>() Compile bytecode for javaClass<Int>()
Compile bytecode for 100.toInt() Compile bytecode for 100.toInt()
Compile bytecode for 100.toLong() Compile bytecode for 100.toLong()
Compile bytecode for args.sortBy { it }.size() Compile bytecode for args.sortedBy { it }.size()
Disconnected from the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket' Disconnected from the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket'
Process finished with exit code 0 Process finished with exit code 0
@@ -26,5 +26,5 @@ fun main(args: Array<String>) {
// EXPRESSION: 100.toLong() // EXPRESSION: 100.toLong()
// RESULT: 100: J // RESULT: 100: J
// EXPRESSION: args.sortBy { it }.size() // EXPRESSION: args.sortedBy { it }.size()
// RESULT: 0: I // RESULT: 0: I