Code/net/minecraft/SuppressForbidden.java

12 lines
372 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
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();
}