mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 04:45:04 +07:00
GitOrigin-RevId: 55783f7b0c474b390e9372d2dda144c7966642bf
15 lines
251 B
Java
15 lines
251 B
Java
import com.intellij.util.concurrency.annotations.RequiresReadLock;
|
|
|
|
class AnnotationInChain {
|
|
void testMethod() {
|
|
intermediateMethod();
|
|
}
|
|
|
|
void intermediateMethod() {
|
|
targetMethod();
|
|
}
|
|
|
|
@RequiresReadLock
|
|
void targetMethod() {
|
|
}
|
|
} |