mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-15 11:01:22 +07:00
9 lines
270 B
Java
9 lines
270 B
Java
import com.intellij.util.concurrency.ThreadingAssertions;
|
|
import com.intellij.util.concurrency.annotations.RequiresWriteLock;
|
|
|
|
class BothAnnotationAndAssertion {
|
|
@RequiresWriteLock
|
|
void testMethod() {
|
|
ThreadingAssertions.assertBackgroundThread();
|
|
}
|
|
} |