Rabbit-R1/android (non root)/java/sources/com/google/android/exoplayer2/util/UnknownNull.java

16 lines
466 B
Java
Raw Permalink Normal View History

2024-05-21 21:08:36 +00:00
package com.google.android.exoplayer2.util;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import javax.annotation.Nonnull;
import javax.annotation.meta.TypeQualifierDefault;
import javax.annotation.meta.When;
@TypeQualifierDefault({ElementType.TYPE_USE})
@Nonnull(when = When.UNKNOWN)
@Retention(RetentionPolicy.CLASS)
/* loaded from: classes2.dex */
public @interface UnknownNull {
}