mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 16:48:29 +07:00
fdc80d017c
GitOrigin-RevId: 49a7d8dbcd26a3aa905c57db97d386bcbd285464
8 lines
395 B
Java
8 lines
395 B
Java
class MyTest {
|
|
|
|
void dblCast() {
|
|
synchronized ((Runnable) (<warning descr="Casting '() -> {...}' to 'Runnable' is redundant">Runnable</warning>) () -> {}) {}
|
|
synchronized ((Runnable) (<warning descr="Casting '(Runnable)() -> {...}' to 'Runnable' is redundant">Runnable</warning>)(<warning descr="Casting '() -> {...}' to 'Runnable' is redundant">Runnable</warning>) () -> {}) {}
|
|
}
|
|
}
|