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
9 lines
197 B
Java
Vendored
9 lines
197 B
Java
Vendored
package androidx.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.PARAMETER, ElementType.TYPE})
|
|
public @interface RecentlyNonNull {
|
|
}
|