mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
Main targets for the fix is completion, parameters info, inlay hints and override/implement. Other IDE functions might be affected. #KT-24911 Fixed #KT-25616 Fixed #KT-25622 Fixed
10 lines
234 B
Java
Vendored
10 lines
234 B
Java
Vendored
package androidx.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
import java.lang.reflect.Parameter;
|
|
|
|
@Target({ElementType.PARAMETER, ElementType.TYPE})
|
|
public @interface RecentlyNullable {
|
|
}
|