Revert "New J2K: fix testdata"

This reverts commit 285aa123
This commit is contained in:
Roman Golyshev
2020-02-20 17:33:39 +03:00
parent 4042214bb2
commit 1dbb3d7c0f
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -3,6 +3,6 @@ import java.util.HashMap
class TestMethodReference {
private val hashMap = HashMap<String, String>()
fun update(key: String, msg: String) {
hashMap.merge(key, msg) { obj: String, str: String -> obj + str }
hashMap.merge(key, msg) { obj: String, s: String -> obj + s }
}
}
+1 -1
View File
@@ -3,6 +3,6 @@ import java.util.HashMap
class TestMethodReference {
private val hashMap = HashMap<String, String>()
fun update(key: String, msg: String) {
hashMap.merge(key, msg) { obj: String, str: String -> obj + str }
hashMap.merge(key, msg) { obj: String, s: String -> obj + s }
}
}
+1 -1
View File
@@ -5,6 +5,6 @@ internal class Test {
fun context() {
val items: MutableList<Double> = ArrayList()
items.add(1.0)
items.forEach(Consumer { x: Double? -> println(x) })
items.forEach(Consumer { o: Double? -> println(o) })
}
}