Update test data

This commit is contained in:
Vitaliy.Bibaev
2017-12-19 20:03:36 +03:00
committed by Yan Zhulanow
parent 8a026fd9cd
commit c69e0c0d01
2 changed files with 4 additions and 6 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
LineBreakpoint created at Simple.kt:5 LineBreakpoint created at Simple.kt:3
Run Java Run Java
Connected to the target VM Connected to the target VM
Simple.kt:5 Simple.kt:3
Stream.of(1, 2, 3) listOf(1, 2, 3).stream()
.toArray() .toArray()
toArray toArray
before: 1,2,3 before: 1,2,3
+1 -3
View File
@@ -1,6 +1,4 @@
import java.util.stream.Stream
fun main(args: Array<String>) { fun main(args: Array<String>) {
// Breakpoint! // Breakpoint!
Stream.of(1, 2, 3).toArray() listOf(1, 2, 3).stream().toArray()
} }