Fix old j2k test data to actual one

This commit is contained in:
Ilya Kirillov
2019-09-24 16:18:17 +03:00
parent 8b0aeb9a55
commit 41f7519244
5 changed files with 14 additions and 14 deletions
@@ -12,10 +12,10 @@ internal class Bar {
}
internal class Test {
fun test(barNotNull: Bar, barNullable: Bar?) {
fun test(barNotNull: Bar, barNullable: Bar) {
barNotNull.fooNotNull.execute()
barNotNull.fooNullable!!.execute()
barNullable!!.fooNotNull.execute()
barNullable.fooNotNull.execute()
barNullable.fooNullable!!.execute()
}
}