Update test data
This commit is contained in:
committed by
Yan Zhulanow
parent
8a026fd9cd
commit
c69e0c0d01
@@ -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
@@ -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()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user