16 lines
418 B
Java
16 lines
418 B
Java
package mc.nbt.internal;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
import static java.lang.annotation.ElementType.METHOD;
|
|
import static java.lang.annotation.ElementType.TYPE;
|
|
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|
|
|
@Documented
|
|
@Retention(RUNTIME)
|
|
@Target({TYPE, METHOD})
|
|
public @interface JacocoExcludeGeneratedReport {
|
|
}
|