9 lines
199 B
Java
Vendored
9 lines
199 B
Java
Vendored
package androidx.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.PARAMETER, ElementType.METHOD})
|
|
public @interface RecentlyNonNull {
|
|
}
|