12 lines
291 B
Java
12 lines
291 B
Java
package com.google.firebase.annotations;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Inherited;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Inherited
|
|
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
|
|
/* loaded from: classes3.dex */
|
|
public @interface DeferredApi {
|
|
}
|