13 lines
247 B
Java
13 lines
247 B
Java
package R2;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
/* loaded from: classes3.dex */
|
|
public @interface a {
|
|
boolean nullSafe() default true;
|
|
|
|
Class value();
|
|
}
|