10 lines
262 B
Java
10 lines
262 B
Java
|
package com.google.common.util.concurrent;
|
||
|
|
||
|
import java.lang.annotation.ElementType;
|
||
|
import java.lang.annotation.Target;
|
||
|
|
||
|
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE})
|
||
|
/* loaded from: classes.dex */
|
||
|
@interface IgnoreJRERequirement {
|
||
|
}
|