[jvm] Ignore calls to super in ThreadRunInspection

GitOrigin-RevId: e79d56472118c453c0a2aca4e44a24111750ada4
This commit is contained in:
Bart van Helvert
2021-08-12 10:24:39 +02:00
committed by intellij-monorepo-bot
parent 641e0c6087
commit bceb99a5f1
7 changed files with 30 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
import java.lang.Runnable
import java.lang.Thread
class ThreadRunSuperTest : Thread() {
fun doTest() {
object : Thread("") {
override fun run() {
super.run()
}
}.start()
}
}