12 lines
295 B
Java
12 lines
295 B
Java
package com.google.errorprone.annotations;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD})
|
|
@Documented
|
|
/* loaded from: classes.dex */
|
|
public @interface MustBeClosed {
|
|
}
|