mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 22:43:40 +07:00
GitOrigin-RevId: c167d2ab84ebbfe97173b412c3d0e0087e66f92d
10 lines
307 B
Java
10 lines
307 B
Java
import org.jetbrains.annotations.Blocking;
|
|
|
|
public class TestExternalAnnotationsDetection {
|
|
@Blocking
|
|
private static void testBlocking() {}
|
|
|
|
private static void func() {
|
|
<warning descr="Possibly blocking call in non-blocking context could lead to thread starvation">testBlocking</warning>();
|
|
}
|
|
} |