mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-23 15:49:31 +07:00
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() {
|
|
}
|
|
} |