mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
12 lines
341 B
Java
12 lines
341 B
Java
package kotlin.jvm.internal;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.ANNOTATION_TYPE})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
/* loaded from: classes3.dex */
|
|
public @interface RepeatableContainer {
|
|
}
|