minecraft-src/com/mojang/blaze3d/MethodsReturnNonnullByDefault.java
2025-07-04 01:41:11 +03:00

16 lines
488 B
Java

package com.mojang.blaze3d;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import javax.annotation.meta.TypeQualifierDefault;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import org.jetbrains.annotations.NotNull;
@NotNull
@TypeQualifierDefault({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Environment(EnvType.CLIENT)
public @interface MethodsReturnNonnullByDefault {
}