New J2K: Split old j2k and new j2k tests
This commit is contained in:
committed by
Ilya Kirillov
parent
02a206bf7c
commit
b411e8e18e
@@ -1,28 +0,0 @@
|
||||
class Test {
|
||||
var someRunnable: Runnable = object : Runnable {
|
||||
override fun run() {
|
||||
this.run()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class Test2 {
|
||||
private val someRunnable: Runnable = object : Runnable {
|
||||
override fun run() {
|
||||
this.run()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class Handler {
|
||||
fun postDelayed(r: Runnable, time: Long) {}
|
||||
}
|
||||
|
||||
class Test3 {
|
||||
private val handler = Handler()
|
||||
private val someRunnable: Runnable = object : Runnable {
|
||||
override fun run() {
|
||||
handler.postDelayed(this, 1000)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
class Test {
|
||||
fun someMethod() {
|
||||
val someRunnable: Runnable = object : Runnable {
|
||||
override fun run() {
|
||||
this.run()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user