mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
Blocking calls detection inspection created (IDEA-173248)
This commit is contained in:
committed by
Nicolay Mitropolsky
parent
2a877313ca
commit
fea31cf421
@@ -0,0 +1,10 @@
|
||||
package org.jetbrains.annotations;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target(value = ElementType.METHOD)
|
||||
@Retention(value = RetentionPolicy.CLASS)
|
||||
public @interface NonBlocking {}
|
||||
Reference in New Issue
Block a user