minecraft-src/net/minecraft/SuppressForbidden.java
2025-07-04 03:15:13 +03:00

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();
}