Fix FIR IDE overrideImplement/androidxNotNull test

This commit is contained in:
Mikhail Glukhikh
2021-05-20 09:51:41 +03:00
parent eac6da62d6
commit f3c9bd16ee
2 changed files with 2 additions and 2 deletions
@@ -3,6 +3,6 @@ package androidx.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target({ElementType.PARAMETER, ElementType.TYPE})
@Target({ElementType.PARAMETER, ElementType.METHOD})
public @interface RecentlyNonNull {
}
@@ -4,6 +4,6 @@ import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
import java.lang.reflect.Parameter;
@Target({ElementType.PARAMETER, ElementType.TYPE})
@Target({ElementType.PARAMETER, ElementType.METHOD})
public @interface RecentlyNullable {
}