mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
[jvm] Ignore calls to super in ThreadRunInspection
GitOrigin-RevId: e79d56472118c453c0a2aca4e44a24111750ada4
This commit is contained in:
committed by
intellij-monorepo-bot
parent
641e0c6087
commit
bceb99a5f1
@@ -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()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user