12 lines
370 B
Java
12 lines
370 B
Java
package net.minecraft;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.CLASS)
|
|
@Target({ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD, ElementType.TYPE})
|
|
public @interface SuppressForbidden {
|
|
String reason();
|
|
}
|