Files
kotlin-fork/third-party/jdk8-annotations/jspecify/annotations/Nullable.java
T
2020-10-08 14:00:06 +03:00

12 lines
236 B
Java

package jspecify.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface Nullable {
}